takari-lifecycle
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-lifecycle</artifactId> <version>2.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2014-2024 Takari, Inc. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.takari</groupId> <artifactId>takari</artifactId> <version>60</version> </parent> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-lifecycle</artifactId> <version>2.2.0</version> <packaging>pom</packaging> <modules> <module>takari-lifecycle-plugin</module> <!-- TODO consider moving integration tests to the main module --> <module>takari-lifecycle-plugin-its</module> </modules> <scm> <connection>scm:git:git@github.com:takari/takari-lifecycle.git</connection> <developerConnection>scm:git:git@github.com:takari/takari-lifecycle.git</developerConnection> <tag>takari-lifecycle-2.2.0</tag> <url>https://github.com/takari/takari-lifecycle</url> </scm> <properties> <mavenVersion>3.9.9</mavenVersion> <aetherVersion>1.9.22</aetherVersion> <sisuVersion>0.9.0.M3</sisuVersion> <incrementalbuild.version>1.0.3</incrementalbuild.version> <guava.version>33.3.0-jre</guava.version> <mavenPluginPluginVersion>3.15.0</mavenPluginPluginVersion> <m2eWorkspaceVersion>0.4.0</m2eWorkspaceVersion> <plexusUtilsVersion>4.0.1</plexusUtilsVersion> <plexusXmlVersion>3.0.1</plexusXmlVersion> <pluginTestingVersion>3.0.5</pluginTestingVersion> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <filtering>true</filtering> <directory>src/main/resources-filtered</directory> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-lifecycle-plugin</artifactId> <dependencies> <dependency> <groupId>io.takari.m2e.workspace</groupId> <artifactId>org.eclipse.m2e.workspace.cli</artifactId> <version>${m2eWorkspaceVersion}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <licenseSets> <licenseSet> <excludes combine.children="append"> <!-- don't override copyright of code copied from other projects --> <!-- | Please note that license-plugin is quite dumb and processes the same sources multiple times | once per each level of parent/module hierarchy. This means the same excludes has to be configured | on each hierarchy level too. (or hope we remember to run "mvn -N license:format", which I am sure | we'll forget) --> <exclude>**/src/main/java/io/takari/maven/plugins/compile/jdt/ReferenceCollection.java</exclude> </excludes> </licenseSet> </licenseSets> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>