|
@@ -0,0 +1,147 @@
|
|
|
+<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>
|