Newer
Older
adjustgpx-gui / pom.xml
@haya4 haya4 on 6 May 2020 4 KB 5.4.1-SNAPSHOT
  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. <groupId>osm.surveyor</groupId>
  4. <artifactId>AdjustTerra</artifactId>
  5. <version>5.4.1-SNAPSHOT</version>
  6. <scm>
  7. <connection>scm:git:http://surveyor.mydns.jp/gitbucket/git/yuu/AdjustTerra.git</connection>
  8. <url>http://surveyor.mydns.jp/gitbucket/yuu/AdjustTerra/wiki</url>
  9. <developerConnection>scm:git:http://surveyor.mydns.jp/gitbucket/git/yuu/AdjustTerra.git</developerConnection>
  10. <tag>HEAD</tag>
  11. </scm>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <java.version>1.8</java.version>
  15. <maven.compiler.source>${java.version}</maven.compiler.source>
  16. <maven.compiler.target>${java.version}</maven.compiler.target>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>haya4</id>
  21. <name>Hayashi Repository</name>
  22. <url>http://surveyor.mydns.jp/archiva/repository/haya4/</url>
  23. <releases>
  24. <enabled>true</enabled>
  25. </releases>
  26. <snapshots>
  27. <enabled>false</enabled>
  28. </snapshots>
  29. </repository>
  30. </repositories>
  31.  
  32. <dependencies>
  33. <dependency>
  34. <groupId>osm.surveyor</groupId>
  35. <artifactId>AdjustTime</artifactId>
  36. <version>5.3.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.commons</groupId>
  40. <artifactId>commons-imaging</artifactId>
  41. <version>1.0-alpha1</version>
  42. <type>jar</type>
  43. </dependency>
  44. <!-- for JUnit test -->
  45. <dependency>
  46. <groupId>org.hamcrest</groupId>
  47. <artifactId>hamcrest-core</artifactId>
  48. <version>1.3</version>
  49. <scope>test</scope>
  50. <type>jar</type>
  51. </dependency>
  52. <dependency>
  53. <groupId>junit</groupId>
  54. <artifactId>junit</artifactId>
  55. <version>4.12</version>
  56. <scope>test</scope>
  57. <type>jar</type>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.commons</groupId>
  61. <artifactId>commons-compress</artifactId>
  62. <version>1.14</version>
  63. <scope>test</scope>
  64. <type>jar</type>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <defaultGoal>install</defaultGoal>
  69.  
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-compiler-plugin</artifactId>
  74. <version>3.8.1</version>
  75. <configuration>
  76. <source>${java.version}</source>
  77. <target>${java.version}</target>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-resources-plugin</artifactId>
  83. <version>3.1.0</version>
  84. <configuration>
  85. <encoding>UTF-8</encoding>
  86. </configuration>
  87. </plugin>
  88.  
  89. <!-- mvn release:prepare -->
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-release-plugin</artifactId>
  93. <version>2.5.3</version>
  94. <configuration>
  95. <releaseProfiles>install</releaseProfiles>
  96. <tagNameFormat>v@{project.version}</tagNameFormat>
  97. </configuration>
  98. </plugin>
  99.  
  100. <!-- Allows the example to be run via 'mvn compile exec:java' -->
  101. <plugin>
  102. <groupId>org.codehaus.mojo</groupId>
  103. <artifactId>exec-maven-plugin</artifactId>
  104. <version>1.6.0</version>
  105. <configuration>
  106. <mainClass>osm.jp.gpx.matchtime.gui.AdjustTerra</mainClass>
  107. <includePluginDependencies>false</includePluginDependencies>
  108. </configuration>
  109. </plugin>
  110.  
  111. <!-- 実行可能jarファイル用のプラグイン -->
  112. <!-- 依存するリソースをすべてjarに同梱する -->
  113. <plugin>
  114. <artifactId>maven-assembly-plugin</artifactId>
  115. <version>3.2.0</version>
  116. <configuration>
  117. <descriptorRefs>
  118. <descriptorRef>jar-with-dependencies</descriptorRef>
  119. </descriptorRefs>
  120. <archive>
  121. <manifest>
  122. <mainClass>osm.jp.gpx.matchtime.gui.AdjustTerra</mainClass>
  123. </manifest>
  124. </archive>
  125. </configuration>
  126. <executions>
  127. <execution>
  128. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  129. <phase>package</phase> <!-- bind to the packaging phase -->
  130. <goals>
  131. <goal>single</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. </plugin>
  136.  
  137. </plugins>
  138. </build>
  139. </project>