123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <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>
- <!-- The basics. -->
- <groupId>eigenbase</groupId>
- <artifactId>eigenbase-properties</artifactId>
- <version>1.1.4</version>
- <packaging>bundle</packaging>
- <!-- More project information. -->
- <name>eigenbase-properties</name>
- <description>Type-safe access to Java system properties.</description>
- <url>http://github.com/julianhyde/eigenbase-properties</url>
- <inceptionYear>2012</inceptionYear>
- <organization>
- <name>Julian Hyde</name>
- <url>http://www.hydromatic.net</url>
- </organization>
- <licenses>
- <license>
- <name>Apache 2</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>julianhyde</id>
- <name>Julian Hyde</name>
- <email>julianhyde@gmail.com</email>
- <url>https://github.com/julianhyde</url>
- <roles>
- <role>architect</role>
- <role>developer</role>
- </roles>
- <timezone>-8</timezone>
- <properties />
- </developer>
- </developers>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.0.4</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.3</version>
- </plugin>
- </plugins>
- </pluginManagement>
-
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <extensions>true</extensions>
- <configuration>
- <instructions>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.4.1</version>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>conjars</id>
- <name>Concurrent Conjars repository</name>
- <url>http://conjars.org/repo</url>
- </repository>
- </distributionManagement>
- <!-- Environment settings. -->
- <issueManagement>
- <system>github</system>
- <url>https://github.com/julianhyde/eigenbase-properties/issues</url>
- </issueManagement>
- <mailingLists />
- <scm>
- <connection>scm:git:git://github.com/julianhyde/eigenbase-properties.git</connection>
- <developerConnection>scm:git:git@github.com:julianhyde/eigenbase-properties.git</developerConnection>
- <url>scm:git:git://github.com/julianhyde/eigenbase-properties.git</url>
- <tag>eigenbase-properties-1.1.4</tag>
- </scm>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8.1</version>
- <configuration>
- <links>
- <link>http://docs.oracle.com/javase/7/docs/api/</link>
- </links>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
- </project>
|