| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <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"> |
|---|
| 3 | <modelVersion>4.0.0</modelVersion> |
|---|
| 4 | <groupId>org.simexplorer</groupId> |
|---|
| 5 | <artifactId>simexplorer</artifactId> |
|---|
| 6 | <version>0.3-SNAPSHOT</version> |
|---|
| 7 | <packaging>pom</packaging> |
|---|
| 8 | |
|---|
| 9 | <name>simexplorer - NB App Parent</name> |
|---|
| 10 | |
|---|
| 11 | <repositories> |
|---|
| 12 | <!-- |
|---|
| 13 | Repository hosting NetBeans modules, especially APIs. |
|---|
| 14 | Versions are based on IDE releases, e.g.: RELEASE691 |
|---|
| 15 | To create your own repository, use: nbm:populate-repository |
|---|
| 16 | --> |
|---|
| 17 | <repository> |
|---|
| 18 | <id>netbeans</id> |
|---|
| 19 | <name>NetBeans</name> |
|---|
| 20 | <url>http://bits.netbeans.org/maven2/</url> |
|---|
| 21 | </repository> |
|---|
| 22 | <repository> |
|---|
| 23 | <id>maven.iscpif.fr</id> |
|---|
| 24 | <name>ISCPIF repository</name> |
|---|
| 25 | <url>http://maven.iscpif.fr/public/</url> |
|---|
| 26 | </repository> |
|---|
| 27 | <repository> |
|---|
| 28 | <id>maven.iscpif.fr.snapshots</id> |
|---|
| 29 | <name>ISCPIF snapshots repository</name> |
|---|
| 30 | <url>http://maven.iscpif.fr/snapshots/</url> |
|---|
| 31 | <snapshots> |
|---|
| 32 | <enabled>true</enabled> |
|---|
| 33 | </snapshots> |
|---|
| 34 | </repository> |
|---|
| 35 | </repositories> |
|---|
| 36 | |
|---|
| 37 | <dependencies> |
|---|
| 38 | <dependency> |
|---|
| 39 | <groupId>junit</groupId> |
|---|
| 40 | <artifactId>junit</artifactId> |
|---|
| 41 | <version>4.8.2</version> |
|---|
| 42 | <scope>test</scope> |
|---|
| 43 | </dependency> |
|---|
| 44 | </dependencies> |
|---|
| 45 | |
|---|
| 46 | <build> |
|---|
| 47 | <pluginManagement> |
|---|
| 48 | <plugins> |
|---|
| 49 | <plugin> |
|---|
| 50 | <groupId>org.codehaus.mojo</groupId> |
|---|
| 51 | <artifactId>nbm-maven-plugin</artifactId> |
|---|
| 52 | <version>3.5</version> |
|---|
| 53 | <extensions>true</extensions> |
|---|
| 54 | <configuration> |
|---|
| 55 | <brandingToken>${brandingToken}</brandingToken> |
|---|
| 56 | <cluster>${brandingToken}</cluster> |
|---|
| 57 | </configuration> |
|---|
| 58 | </plugin> |
|---|
| 59 | <plugin> |
|---|
| 60 | <!-- NetBeans 6.9+ requires JDK 6 --> |
|---|
| 61 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 62 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 63 | <version>2.3.2</version> |
|---|
| 64 | <configuration> |
|---|
| 65 | <source>1.6</source> |
|---|
| 66 | <target>1.6</target> |
|---|
| 67 | </configuration> |
|---|
| 68 | </plugin> |
|---|
| 69 | <plugin> |
|---|
| 70 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 71 | <artifactId>maven-jar-plugin</artifactId> |
|---|
| 72 | <version>2.3.1</version> |
|---|
| 73 | </plugin> |
|---|
| 74 | </plugins> |
|---|
| 75 | </pluginManagement> |
|---|
| 76 | </build> |
|---|
| 77 | |
|---|
| 78 | <modules> |
|---|
| 79 | <module>branding</module> |
|---|
| 80 | <module>application</module> |
|---|
| 81 | <module>mexico</module> |
|---|
| 82 | <module>simexplorer-workflow-model</module> |
|---|
| 83 | <module>simexplorer-gui</module> |
|---|
| 84 | <module>simexplorer-gui-structure</module> |
|---|
| 85 | <module>simexplorer-tools</module> |
|---|
| 86 | </modules> |
|---|
| 87 | |
|---|
| 88 | <properties> |
|---|
| 89 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|---|
| 90 | <netbeans.version>RELEASE70</netbeans.version> |
|---|
| 91 | <brandingToken>simexplorer</brandingToken> |
|---|
| 92 | <openmole.version>0.3-SNAPSHOT</openmole.version> |
|---|
| 93 | </properties> |
|---|
| 94 | </project> |
|---|