/maven-deployer/tags/maven-deployer-1.0/pom.xml
http://mycila.googlecode.com/ · XML · 339 lines · 291 code · 19 blank · 29 comment · 0 complexity · bbb9bf7e59fc41dc11e94e8ac33e081e MD5 · raw file
- <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>
-
- <!--
- POM settings
- -->
-
- <groupId>maven.maven-deployer</groupId>
- <artifactId>maven-deployer</artifactId>
- <version>1.0</version>
- <packaging>jar</packaging>
-
- <name>maven-deployer</name>
- <description>GUI to deploy artifacts</description>
- <url>http://code.mycila.com/</url>
- <inceptionYear>2008</inceptionYear>
-
- <!--
- Properties
- -->
-
- <properties>
- <jdk.version>1.5</jdk.version>
- </properties>
-
- <!--
- Versionning system
- -->
-
- <scm>
- <connection>scm:svn:http://mycila.googlecode.com/svn/maven-deployer/tags/maven-deployer-1.0</connection>
- <developerConnection>scm:svn:https://mycila.googlecode.com/svn/maven-deployer/tags/maven-deployer-1.0</developerConnection>
- <url>http://mycila.googlecode.com/svn/maven-deployer/tags/maven-deployer-1.0</url>
- </scm>
-
- <!--
- Project settings
- -->
-
- <!--
- Distributions
- -->
-
- <distributionManagement>
- <repository>
- <id>mc-release</id>
- <name>Alternate Maven repository of releases</name>
- <url>dav:https://mc-repo.googlecode.com/svn/maven2/releases</url>
- </repository>
- <snapshotRepository>
- <id>mc-snapshot</id>
- <name>Alternate Maven repository of snapshots</name>
- <url>dav:https://mc-repo.googlecode.com/svn/maven2/snapshots</url>
- <uniqueVersion>false</uniqueVersion>
- </snapshotRepository>
- <site>
- <id>website</id>
- <name>website</name>
- <url>file://${basedir}/target/dist/site/mycila-testing/</url>
- </site>
- </distributionManagement>
-
-
- <!--
- BUILD
- -->
-
- <prerequisites>
- <maven>2.0.9</maven>
- </prerequisites>
-
- <build>
- <finalName>maven-deployer</finalName>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
- <plugins>
- <!-- for maven plugins -->
- <plugin>
- <artifactId>maven-plugin-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <configuration>
- <filesets>
- <fileset>
- <directory>.clover</directory>
- </fileset>
- <fileset>
- <directory>test-output</directory>
- </fileset>
- </filesets>
- </configuration>
- </plugin>
- <!-- IDE descriptors -->
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <configuration>
- <downloadSources>true</downloadSources>
- <downloadJavadocs>false</downloadJavadocs>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-idea-plugin</artifactId>
- <configuration>
- <downloadSources>true</downloadSources>
- <downloadJavadocs>false</downloadJavadocs>
- </configuration>
- </plugin>
- <!-- compilation -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${jdk.version}</source>
- <target>${jdk.version}</target>
- </configuration>
- </plugin>
- <!-- testing -->
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <parallel>false</parallel>
- <threadCount>5</threadCount>
- </configuration>
- </plugin>
- <!-- packaging -->
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-remote-resources-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>process</goal>
- </goals>
- <configuration>
- <resourceBundles>
- <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
- </resourceBundles>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.mycila.maven.ui.MavenDeployer</mainClass>
- <addClasspath>false</addClasspath>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.mycila.maven.ui.MavenDeployer</mainClass>
- <addClasspath>false</addClasspath>
- </manifest>
- </archive>
- <descriptors>
- <descriptor>${basedir}/src/main/assembly/project.xml</descriptor>
- <descriptor>${basedir}/src/main/assembly/dependencies.xml</descriptor>
- <descriptor>${basedir}/src/main/assembly/dist.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>attached</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!-- releasing -->
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <updateReleaseInfo>true</updateReleaseInfo>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-release-plugin</artifactId>
- </plugin>
- <!-- documentation -->
- <plugin>
- <artifactId>maven-site-plugin</artifactId>
- <configuration>
- <locales>en</locales>
- </configuration>
- </plugin>
- <plugin>
- <inherited>false</inherited>
- <groupId>com.google.code.maven-license-plugin</groupId>
- <artifactId>maven-license-plugin</artifactId>
- <version>1.4.0</version>
- <configuration>
- <header>${basedir}/src/main/etc/header.txt</header>
- <failIfMissing>true</failIfMissing>
- <aggregate>true</aggregate>
- <properties>
- <owner>Mathieu Carbou</owner>
- <year>${project.inceptionYear}</year>
- <email>mathieu.carbou@gmail.com</email>
- </properties>
- <excludes>
- <exclude>LICENSE.txt</exclude>
- <exclude>**/src/test/resources/**</exclude>
- <exclude>**/src/test/data/**</exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <id>check-headers</id>
- <phase>verify</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <reporting>
- <plugins>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <quiet>true</quiet>
- </configuration>
- <reportSets>
- <reportSet>
- <reports>
- <report>javadoc</report>
- </reports>
- <configuration>
- <links>
- <link>http://java.sun.com/javase/6/docs/api/</link>
- </links>
- </configuration>
- </reportSet>
- </reportSets>
- </plugin>
- <plugin>
- <artifactId>maven-jxr-plugin</artifactId>
- <configuration>
- <linkJavadoc>true</linkJavadoc>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-changelog-plugin</artifactId>
- <configuration>
- <displayFileDetailUrl>http://mycila.googlecode.com/svn%FILE%</displayFileDetailUrl>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-pmd-plugin</artifactId>
- <configuration>
- <linkXref>true</linkXref>
- <targetJdk>${jdk.version}</targetJdk>
- <minimumTokens>100</minimumTokens>
- <rulesets>
- <!-- Rule sets that come bundled with PMD -->
- <ruleset>/rulesets/basic.xml</ruleset>
- <ruleset>/rulesets/braces.xml</ruleset>
- <ruleset>/rulesets/finalizers.xml</ruleset>
- <ruleset>/rulesets/imports.xml</ruleset>
- <ruleset>/rulesets/migrating.xml</ruleset>
- <ruleset>/rulesets/strings.xml</ruleset>
- <ruleset>/rulesets/unusedcode.xml</ruleset>
- </rulesets>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jdepend-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>javancss-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- <configuration>
- <tags>
- <tag>TODO</tag>
- <tag>FIXME</tag>
- <tag>@todo</tag>
- <tag>@fixme</tag>
- <tag>@deprecated</tag>
- </tags>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
-
- <!--
- LIBS
- -->
-
- <dependencies>
- <dependency>
- <groupId>org.swinglabs</groupId>
- <artifactId>swing-worker</artifactId>
- <version>1.1</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.xmltool</groupId>
- <artifactId>xmltool</artifactId>
- <version>1.4</version>
- </dependency>
- </dependencies>
-
- </project>