eigenbase-properties-1.1.4.pom 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <!-- The basics. -->
  4. <groupId>eigenbase</groupId>
  5. <artifactId>eigenbase-properties</artifactId>
  6. <version>1.1.4</version>
  7. <packaging>bundle</packaging>
  8. <!-- More project information. -->
  9. <name>eigenbase-properties</name>
  10. <description>Type-safe access to Java system properties.</description>
  11. <url>http://github.com/julianhyde/eigenbase-properties</url>
  12. <inceptionYear>2012</inceptionYear>
  13. <organization>
  14. <name>Julian Hyde</name>
  15. <url>http://www.hydromatic.net</url>
  16. </organization>
  17. <licenses>
  18. <license>
  19. <name>Apache 2</name>
  20. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>julianhyde</id>
  26. <name>Julian Hyde</name>
  27. <email>julianhyde@gmail.com</email>
  28. <url>https://github.com/julianhyde</url>
  29. <roles>
  30. <role>architect</role>
  31. <role>developer</role>
  32. </roles>
  33. <timezone>-8</timezone>
  34. <properties />
  35. </developer>
  36. </developers>
  37. <properties>
  38. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  39. </properties>
  40. <build>
  41. <pluginManagement>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-source-plugin</artifactId>
  46. <version>2.0.4</version>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-javadoc-plugin</artifactId>
  51. <version>2.3</version>
  52. </plugin>
  53. </plugins>
  54. </pluginManagement>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-source-plugin</artifactId>
  59. <executions>
  60. <execution>
  61. <id>attach-sources</id>
  62. <goals>
  63. <goal>jar</goal>
  64. </goals>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-javadoc-plugin</artifactId>
  71. <executions>
  72. <execution>
  73. <id>attach-javadocs</id>
  74. <goals>
  75. <goal>jar</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.felix</groupId>
  82. <artifactId>maven-bundle-plugin</artifactId>
  83. <extensions>true</extensions>
  84. <configuration>
  85. <instructions>
  86. </instructions>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-release-plugin</artifactId>
  92. <version>2.4.1</version>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. <distributionManagement>
  97. <repository>
  98. <id>conjars</id>
  99. <name>Concurrent Conjars repository</name>
  100. <url>http://conjars.org/repo</url>
  101. </repository>
  102. </distributionManagement>
  103. <!-- Environment settings. -->
  104. <issueManagement>
  105. <system>github</system>
  106. <url>https://github.com/julianhyde/eigenbase-properties/issues</url>
  107. </issueManagement>
  108. <mailingLists />
  109. <scm>
  110. <connection>scm:git:git://github.com/julianhyde/eigenbase-properties.git</connection>
  111. <developerConnection>scm:git:git@github.com:julianhyde/eigenbase-properties.git</developerConnection>
  112. <url>scm:git:git://github.com/julianhyde/eigenbase-properties.git</url>
  113. <tag>eigenbase-properties-1.1.4</tag>
  114. </scm>
  115. <dependencies>
  116. <dependency>
  117. <groupId>junit</groupId>
  118. <artifactId>junit</artifactId>
  119. <version>3.8.1</version>
  120. <scope>test</scope>
  121. </dependency>
  122. </dependencies>
  123. <reporting>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-javadoc-plugin</artifactId>
  128. <version>2.8.1</version>
  129. <configuration>
  130. <links>
  131. <link>http://docs.oracle.com/javase/7/docs/api/</link>
  132. </links>
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </reporting>
  137. </project>