| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| ~ Copyright (c) 2010, 2012 Sonatype, Inc. |
| ~ All rights reserved. This program and the accompanying materials |
| ~ are made available under the terms of the Eclipse Public License v1.0 |
| ~ which accompanies this distribution, and is available at |
| ~ http://www.eclipse.org/legal/epl-v10.html |
| ~ |
| ~ Contributors: |
| ~ Stuart McCulloch (Sonatype, Inc.) - initial API and implementation |
| --> |
| |
| <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"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.eclipse.sisu</groupId> |
| <artifactId>sisu-plexus</artifactId> |
| <version>0.0.0.M2</version> |
| </parent> |
| |
| <artifactId>org.eclipse.sisu.plexus</artifactId> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>${basedir}</directory> |
| <includes> |
| <include>META-INF/</include> |
| <include>about.html</include> |
| </includes> |
| </resource> |
| </resources> |
| <sourceDirectory>src</sourceDirectory> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>animal-sniffer-maven-plugin</artifactId> |
| <version>1.9</version> |
| <configuration> |
| <signature> |
| <groupId>org.codehaus.mojo.signature</groupId> |
| <artifactId>java15</artifactId> |
| <version>1.0</version> |
| </signature> |
| </configuration> |
| <executions> |
| <execution> |
| <id>checkJava5</id> |
| <phase>package</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-source-plugin</artifactId> |
| <version>2.2.1</version> |
| <executions> |
| <execution> |
| <id>plugin-source</id> |
| <goals> |
| <goal>jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.9</version> |
| <configuration> |
| <docletArtifact> |
| <groupId>com.google.doclava</groupId> |
| <artifactId>doclava</artifactId> |
| <version>1.0.5</version> |
| </docletArtifact> |
| <doclet>com.google.doclava.Doclava</doclet> |
| <!-- |
| | bootclasspath required by Sun's JVM |
| --> |
| <bootclasspath>${sun.boot.class.path}</bootclasspath> |
| <excludePackageNames>*.internal</excludePackageNames> |
| <additionalparam> |
| -quiet |
| -federate JDK http://download.oracle.com/javase/6/docs/api/index.html? |
| -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml |
| -federate Guice http://google-guice.googlecode.com/svn/trunk/javadoc/ |
| -hdf project.name "${project.name}" |
| -d ${project.build.directory}/apidocs |
| </additionalparam> |
| <useStandardDocletOptions>false</useStandardDocletOptions> |
| <!-- |
| | Apple's JVM sometimes requires more memory |
| --> |
| <additionalJOption>-J-Xmx1024m</additionalJOption> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.sisu</groupId> |
| <artifactId>org.eclipse.sisu.inject</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.6.4</version> |
| </dependency> |
| <dependency> |
| <groupId>javax.enterprise</groupId> |
| <artifactId>cdi-api</artifactId> |
| <version>1.0</version> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.el</groupId> |
| <artifactId>el-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.jboss.ejb3</groupId> |
| <artifactId>jboss-ejb3-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.jboss.interceptor</groupId> |
| <artifactId>jboss-interceptor-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>10.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.sonatype.sisu</groupId> |
| <artifactId>sisu-guice</artifactId> |
| <version>3.1.0</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.sonatype.sisu</groupId> |
| <artifactId>sisu-guava</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>asm</groupId> |
| <artifactId>asm</artifactId> |
| <version>3.3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-component-annotations</artifactId> |
| <version>1.5.5</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-classworlds</artifactId> |
| <version>2.4</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.10</version> |
| <optional>true</optional> |
| </dependency> |
| </dependencies> |
| |
| </project> |