archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Root project archetype for creating multi module projects developing NetBeans IDE modules. Approximately similar in functionality to module suites in NetBeans Ant projects.
<?xml version="1.0" encoding="UTF-8"?> #set( $D = '$' ) <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> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>pom</packaging> <name>${artifactId} NetBeans Module Suite</name> <repositories> <!-- Repository hosting NetBeans modules, especially APIs. Versions are based on IDE releases, e.g.: RELEASE691 To create your own repository, use: nbm:populate-repository --> <repository> <id>netbeans</id> <name>NetBeans</name> <url>http://bits.netbeans.org/maven2/</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>nbm-maven-plugin</artifactId> <version>3.5</version> <configuration> <cluster>${artifactId.toLowerCase().replaceAll("[^a-z0-9_]+", "_")}</cluster> </configuration> </plugin> <plugin> <!-- NetBeans 6.9+ requires JDK 6 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>updatesite</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>nbm-maven-plugin</artifactId> <executions> <execution> <id>site</id> <phase>package</phase> <goals> <goal>autoupdate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <netbeans.version>${netbeansVersion}</netbeans.version> </properties> </project>