/mycila-plugin/trunk/pom.xml
http://mycila.googlecode.com/ · XML · 260 lines · 240 code · 16 blank · 4 comment · 0 complexity · 7d17253d40493c2225368391f051aa0c 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>
- <groupId>com.mycila</groupId>
- <artifactId>mycila-plugin</artifactId>
- <version>2.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>mycila-plugin</name>
- <description>Plugin Framework</description>
- <url>http://code.mycila.com/</url>
- <inceptionYear>2010</inceptionYear>
- <prerequisites>
- <maven>2.2.1</maven>
- </prerequisites>
- <properties>
- <jdk.version>1.6</jdk.version>
- </properties>
- <scm>
- <connection>scm:svn:https://mycila.googlecode.com/svn/mycila-plugin/trunk</connection>
- <developerConnection>scm:svn:https://mycila.googlecode.com/svn/mycila-plugin/trunk</developerConnection>
- <url>http://mycila.googlecode.com/svn/mycila-plugin/trunk</url>
- </scm>
- <organization>
- <name>Mycila</name>
- <url>http://www.mycila.com/</url>
- </organization>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>mathieu.carbou</id>
- <name>Mathieu Carbou</name>
- <email>mathieu.carbou@gmail.com</email>
- <url>http://mathieu.carbou.free.fr/</url>
- <organization>Mycila</organization>
- <organizationUrl>http://www.mycila.com/</organizationUrl>
- <timezone>-5</timezone>
- <roles>
- <role>project owner</role>
- <role>developer</role>
- </roles>
- </developer>
- </developers>
- <issueManagement>
- <system>Google Code</system>
- <url>http://code.google.com/p/mycila/issues/list</url>
- </issueManagement>
- <ciManagement/>
- <mailingLists>
- <mailingList>
- <name>mycila</name>
- <subscribe>mycila-subscribe@googlegroups.com</subscribe>
- <unsubscribe>mycila-unsubscribe@googlegroups.com</unsubscribe>
- <archive>http://groups.google.com/group/mycila/</archive>
- </mailingList>
- </mailingLists>
- <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/${project.artifactId}</url>
- </site>
- </distributionManagement>
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${jdk.version}</source>
- <target>${jdk.version}</target>
- </configuration>
- </plugin>
- <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-shade-plugin</artifactId>
- <executions>
- <execution>
- <id>standard</id>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <shadedArtifactAttached>false</shadedArtifactAttached>
- <createSourcesJar>true</createSourcesJar>
- <artifactSet>
- <includes>
- <include>org.jgrapht:jgrapht</include>
- <include>aopalliance:aopalliance</include>
- </includes>
- </artifactSet>
- <relocations>
- <relocation>
- <pattern>org.jgrapht</pattern>
- <shadedPattern>com.mycila.plugin.internal.jgrapht</shadedPattern>
- </relocation>
- <relocation>
- <pattern>org.aopalliance</pattern>
- <shadedPattern>com.mycila.plugin.internal.aopalliance</shadedPattern>
- </relocation>
- </relocations>
- <filters>
- <filter>
- <artifact>org.jgrapht:jgrapht</artifact>
- <excludes>
- <exclude>org/jgrapht/demo/**</exclude>
- <exclude>org/jgrapht/experimental/**</exclude>
- <exclude>org/jgrapht/ext/**</exclude>
- <exclude>org/jgrapht/generate/**</exclude>
- </excludes>
- </filter>
- </filters>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>com.mycila.maven-license-plugin</groupId>
- <artifactId>maven-license-plugin</artifactId>
- <version>1.6.1</version>
- <configuration>
- <header>${basedir}/src/main/etc/header.txt</header>
- <failIfMissing>true</failIfMissing>
- <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>dependency-reduced-pom.xml</exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- deps -->
- <dependency>
- <groupId>com.google.inject</groupId>
- <artifactId>guice</artifactId>
- <version>3.0-20100723</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>aopalliance</groupId>
- <artifactId>aopalliance</artifactId>
- <version>1.0</version>
- </dependency>
- <!-- embedded - could be made public a day -->
- <dependency>
- <groupId>org.jgrapht</groupId>
- <artifactId>jgrapht</artifactId>
- <version>0.8.1</version>
- </dependency>
- <!-- optional features -->
- <dependency>
- <groupId>asm</groupId>
- <artifactId>asm</artifactId>
- <version>3.2</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>2.2</version>
- <optional>true</optional>
- </dependency>
- <!-- testing -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <version>1.8.5</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.google</groupId>
- <artifactId>guava</artifactId>
- <version>r05</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>