jpp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.jpp</groupId>
<artifactId>jpp</artifactId>
<version>0.1.1</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jpp</groupId>
<artifactId>jpp</artifactId>
<packaging>jar</packaging>
<version>0.1.1</version>
<name>jpp</name>
<description>Generating Java source code for various design patterns based on annotations.</description>
<url>http://jpp.sourceforge.net</url>
<scm>
<connection>scm:svn:https://jpp.svn.sourceforge.net/svnroot/jpp/tags/jpp-0.1.1</connection>
</scm>
<distributionManagement>
<repository>
<id>jpp-release</id>
<name>jpp releases on SourceForge</name>
<url>scp://shell.sourceforge.net/home/groups/j/jp/jpp/repository/release</url>
</repository>
<snapshotRepository>
<id>jpp-snapshot</id>
<name>jpp snapshots on SourceForge</name>
<url>scp://shell.sourceforge.net/home/groups/j/jp/jpp/repository/snapshot</url>
</snapshotRepository>
<site>
<id>jpp-site</id>
<name>jpp site on SourceForge</name>
<url>scp://shell.sourceforge.net/home/groups/j/jp/jpp/htdocs</url>
</site>
</distributionManagement>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ivan</id>
<name>Ivan Szkiba</name>
<email>szkiba at SourceForge</email>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-1</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.13</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId>
<version>2.3</version>
<scope>test</scope>
</dependency>
-->
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>test.source.dir</name>
<value>${basedir}/src/test/resources</value>
</property>
<property>
<name>test.output.dir</name>
<value>${basedir}/target/test-classes</value>
</property>
<property>
<name>test.classpath</name>
<value>${basedir}/target/classes</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
<descriptorRef>src</descriptorRef>
<descriptorRef>bin</descriptorRef>
</descriptorRefs>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>sun</groupId>
<artifactId>tools</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
<executions>
<execution>
<id>integration-test</id>
<phase>pre-site</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant dir="${basedir}/src/sample" target="build" inheritAll="true">
<property name="build.dir" value="${basedir}/target/sample" />
<reference refid="maven.compile.classpath" torefid="dependency.classpath" />
</ant>
</tasks>
</configuration>
</execution>
<execution>
<id>pre-site</id>
<phase>pre-site</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="sample.site" value="${basedir}/target/site/sample" />
<property name="sample.source" value="${basedir}/src/sample/src/main/java/jpp/sample" />
<property name="sample.generated" value="${basedir}/target/sample/generated-sources/main/java/jpp/sample" />
<mkdir dir="${sample.site}" />
<copy todir="${sample.site}">
<fileset dir="${sample.source}" includes="**/*.java" />
<fileset dir="${sample.generated}" includes="**/*.java" />
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.2</version>
<configuration>
<projectsDirectory>${basedir}/src/sample</projectsDirectory>
<pom>${basedir}/src/sample/pom.xml</pom>
<encoding>UTF-8</encoding>
<showErrors>true</showErrors>
</configuration>
<executions>
<execution>
<id>pre-site</id>
<phase>pre-site</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<cloneProjectsTo>${basedir}/target/cloned-sample</cloneProjectsTo>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
<tag>TODO</tag>
<tag>FIXME</tag>
<tag>XXX</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>summary</report>
<report>license</report>
<report>project-team</report>
<report>dependencies</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>