lattice-maven-build-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hiforce.lattice</groupId> <artifactId>lattice-maven-build-plugin</artifactId> <version>1.0.19</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>lattice-maven-build</artifactId> <groupId>org.hiforce.lattice</groupId> <version>1.0.19</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>maven-plugin</packaging> <artifactId>lattice-maven-build-plugin</artifactId> <dependencies> <dependency> <groupId>org.hiforce.lattice</groupId> <artifactId>lattice-model</artifactId> </dependency> <dependency> <groupId>org.hiforce.lattice</groupId> <artifactId>lattice-runtime</artifactId> </dependency> <dependency> <groupId>org.hiforce.lattice</groupId> <artifactId>lattice-maven-build-model</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.hiforce.lattice</groupId> <artifactId>lattice-jar-tools</artifactId> </dependency> <!-- <dependency>--> <!-- <groupId>org.codehaus.plexus</groupId>--> <!-- <artifactId>plexus-utils</artifactId>--> <!-- <version>3.0.8</version>--> <!-- </dependency>--> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.4</version> <executions> <execution> <id>default-addPluginArtifactMetadata</id> <phase>package</phase> <goals> <goal>addPluginArtifactMetadata</goal> </goals> </execution> <execution> <id>default-descriptor</id> <phase>process-classes</phase> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>