graphwalker-maven-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.neofreko</groupId> <artifactId>graphwalker-maven-archetype</artifactId> <version>4.3.3-100</version> </dependency>
<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.github.neofreko</groupId> <artifactId>graphwalker-project</artifactId> <version>4.3.3-100</version> </parent> <name>GraphWalker Maven Archetype</name> <artifactId>graphwalker-maven-archetype</artifactId> <packaging>maven-archetype</packaging> <scm> <url>https://github.com/GraphWalker/graphwalker-project</url> <connection>scm:git:git://github.com:GraphWalker/graphwalker-project.git</connection> <developerConnection>scm:git:git@github.com:GraphWalker/graphwalker-project.git </developerConnection> </scm> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>archetype-resources/pom.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>archetype-resources/pom.xml</exclude> </excludes> </resource> </resources> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> </extension> </extensions> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <licenseName>mit</licenseName> </configuration> <executions> <execution> <id>update-license</id> <phase>process-sources</phase> <goals> <goal>update-file-header</goal> </goals> <configuration> <excludes> <exclude>**/archetype-resources/**/*.*</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>