fornax-oaw-m2-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fornax.toolsupport</groupId> <artifactId>fornax-oaw-m2-plugin</artifactId> <version>3.6.0</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/maven-v4_0_0.xsd"> <parent> <groupId>org.fornax</groupId> <artifactId>fornax-parent</artifactId> <version>5</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.fornax.toolsupport</groupId> <artifactId>fornax-oaw-m2-plugin</artifactId> <version>3.6.0</version> <packaging>maven-plugin</packaging> <name>Model Workflow-M2-Plugin</name> <description>The Maven2-Plugin for the Model Workflow execution (oAW 4.x / Eclipse MWE/MWE2)</description> <properties> <projectId>TOM</projectId> <projectPID>10017</projectPID> <category>toolsupport</category> <categoryPID>10017</categoryPID> </properties> <developers> <developer> <id>thorque</id> <name>Thorsten Kamann</name> <email>thorsten.kamann@googlemail.com</email> <organization>Fornax Development Team</organization> <organizationUrl>http://www.fornax-platform.org</organizationUrl> <roles> <role>Project-Administrator</role> <role>Developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>kthoms</id> <name>Karsten Thoms</name> <email>karsten.thoms@itemis.de</email> <organization>itemis</organization> <organizationUrl>http://www.itemis.com</organizationUrl> <roles> <role>Project-Administrator</role> <role>Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <contributors> <contributor> <name>Dietrich Schulten</name> <email>ds@escalon.de</email> </contributor> <contributor> <name>Edwin Park</name> <email>epark@operative.com</email> <organization>Operative</organization> <organizationUrl>http://www.operative.com</organizationUrl> </contributor> <contributor> <name>Denis Robert</name> <email>drobert@bfm.bm</email> </contributor> <contributor> <name>Heiko Behrens</name> <email>heiko.behrens@itemis.de</email> <organizationUrl>http://www.1160pm.net</organizationUrl> </contributor> <contributor> <name>Jason Pell</name> <email>jasonmpell@gmail.com</email> </contributor> <contributor> <name>Yuri Blankenstein</name> <email>yuri.blankenstein@gmail.com</email> </contributor> </contributors> <scm> <connection> scm:svn:https://svn.code.sf.net/p/fornax/code/fornax-toolsupport-oaw-m2-plugin/tags/fornax-oaw-m2-plugin-3.6.0 </connection> <developerConnection> scm:svn:https://svn.code.sf.net/p/fornax/code/fornax-toolsupport-oaw-m2-plugin/tags/fornax-oaw-m2-plugin-3.6.0 </developerConnection> <url>scm:svn:https://svn.code.sf.net/p/fornax/code/fornax-toolsupport-oaw-m2-plugin/tags/fornax-oaw-m2-plugin-3.6.0</url> </scm> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-descriptor</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.12</version> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.8.3</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils-core</artifactId> <version>1.8.3</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <!-- TEST DEPENDENCIES --> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit3</artifactId> <version>1.6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Suite.java</include> </includes> <excludes> <exclude>**/*SuiteComponent.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> <executions> <execution> <id>it-test</id> <phase>pre-integration-test</phase> <goals> <goal>install-file</goal> </goals> <configuration> <file>${basedir}/target/${project.build.finalName}.jar</file> <groupId>org.fornax.toolsupport</groupId> <artifactId>fornax-oaw-m2-plugin</artifactId> <version>${project.version}</version> <packaging>maven-plugin</packaging> <pomFile>${basedir}/pom.xml</pomFile> </configuration> </execution> </executions> </plugin> <plugin> <!-- integration tests can be skipped using -DskipITs, or -Darguments="-DskipITs" in a release build, note that you need -D twice in the latter case --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.18</version> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> </goals> </execution> <execution> <id>verify</id> <goals> <goal>verify</goal> </goals> </execution> </executions> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>process-sources -DprepareRelease=true</preparationGoals> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>release-prepare</id> <activation> <property> <name>prepareRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>process-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <ant> <property name="version.mvn" value="${project.version}" /> </ant> </target> </configuration> </execution> </executions> </plugin> --> </plugins> </build> </profile> </profiles> </project>