blob: 81a7a441bb93707c0d541c3679bf5711b5e94abc [file] [log] [blame]
Paul Hammant0379b182010-06-11 11:52:29 +00001<project>
Paul Hammant2a225642010-06-03 10:37:09 +00002 <modelVersion>4.0.0</modelVersion>
3 <groupId>javax.inject</groupId>
Paul Hammant0379b182010-06-11 11:52:29 +00004 <artifactId>javax.inject</artifactId>
Paul Hammant2a225642010-06-03 10:37:09 +00005 <packaging>jar</packaging>
Paul Hammant0379b182010-06-11 11:52:29 +00006 <name>javax.inject</name>
7 <version>1</version>
8 <description>The javax.inject API</description>
Paul Hammant2a225642010-06-03 10:37:09 +00009 <url>http://code.google.com/p/atinject/</url>
10 <licenses>
11 <license>
12 <name>The Apache Software License, Version 2.0</name>
13 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
14 <distribution>repo</distribution>
15 </license>
16 </licenses>
17 <scm>
Paul Hammantf6f284c2010-06-03 10:42:46 +000018 <connection>scm:svn:http://atinject.googlecode.com/svn/trunk</connection>
19 <developerConnection>scm:svn:https://atinject.googlecode.com/svn/trunk</developerConnection>
20 <url>http://code.google.com/p/atinject/source/checkout</url>
Paul Hammant2a225642010-06-03 10:37:09 +000021 </scm>
Paul Hammant2a225642010-06-03 10:37:09 +000022 <build>
Paul Hammant2a225642010-06-03 10:37:09 +000023 <pluginManagement>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 <version>2.1</version>
29 <configuration>
30 <source>1.5</source>
31 <target>1.5</target>
32 <encoding>UTF-8</encoding>
33 <optimize>false</optimize>
34 <debug>true</debug>
35 <showDeprecation>true</showDeprecation>
36 </configuration>
37 </plugin>
38 </plugins>
39 </pluginManagement>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-release-plugin</artifactId>
44 <version>2.0</version>
45 <configuration>
46 <mavenExecutorId>forked-path</mavenExecutorId>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <developers>
52 <developer>
53 <id>various</id>
54 <name>Various</name>
55 <email>atinject-observer@googlegroups.com</email>
56 <url>http://groups.google.com/group/atinject-observer?pli=1</url>
57 <roles>
58 <role>developer</role>
59 </roles>
60 <timezone>-8</timezone>
61 </developer>
62 </developers>
63 <distributionManagement>
64 <repository>
65 <id>sonatype-nexus-staging</id>
66 <name>Nexus Release Repository</name>
67 <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
68 </repository>
69 </distributionManagement>
70
71 <profiles>
72 <profile>
73 <id>release-sign-artifacts</id>
74 <activation>
75 <property>
76 <name>performRelease</name>
77 <value>true</value>
78 </property>
79 </activation>
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-gpg-plugin</artifactId>
85 <version>1.0</version>
86 <executions>
87 <execution>
88 <id>sign-artifacts</id>
89 <phase>verify</phase>
90 <goals>
91 <goal>sign</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96 </plugins>
97 </build>
98 </profile>
99 </profiles>
Paul Hammantda75e862009-09-18 04:13:48 +0000100</project>