<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> <groupId>osm.surveyor</groupId> <artifactId>ReStamp-gui</artifactId> <version>3.5.5-SNAPSHOT</version> <packaging>jar</packaging> <scm> <connection>scm:git:http://surveyor.mydns.jp/gitbucket/git/haya4/restamp-gui.git</connection> <url>http://surveyor.mydns.jp/gitbucket/git/haya4/restamp-gui/wiki</url> <developerConnection>scm:git:http://surveyor.mydns.jp/gitbucket/git/haya4/restamp-gui.git</developerConnection> <tag>v3.5.2</tag> </scm> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Yuu Hayashi</name> <email>hayashi.yuu@gmail.com</email> <organization>surveyor</organization> <organizationUrl>http://surveyor.mydns.jp/</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <!-- プロジェクトの名前、ロゴ、URL(右上) --> <name>ReStamp-gui</name> <url>http://surveyor.mydns.jp/gitbucket/yuu/Restamp-gui/wiki</url> <!-- DEPLOY先の指定 mvn deploy --> <distributionManagement> <repository> <id>surveyor.haya4</id> <name>Internal Release Repository</name> <url>http://surveyor.mydns.jp/archiva/repository/haya4/</url> </repository> <snapshotRepository> <id>surveyor.snapshots</id> <name>Archiva Managed Snapshot Repository</name> <url>http://surveyor.mydns.jp/archiva/repository/snapshots/</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>surveyor.haya4</id> <name>Internal Release Repository</name> <url>http://surveyor.mydns.jp/archiva/repository/haya4/</url> </repository> </repositories> <dependencies> <!-- restamp-core --> <dependency> <groupId>osm.surveyor</groupId> <artifactId>ReStamp</artifactId> <version>3.8.8</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-imaging --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-imaging</artifactId> <version>1.0-alpha1</version> </dependency> <!-- for JUnit test --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>2.2</version> <scope>test</scope> <type>jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <type>jar</type> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.14</version> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <!-- 実行可能jarファイル用のプラグイン --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.2.0</version> <configuration> <descriptorRefs> <!-- 依存するリソースをすべてjarに同梱する --> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>osm.surveyor.matchtime.gui.ReStamp</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <!-- mvn release:prepare --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <releaseProfiles>install</releaseProfiles> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <!-- UnitTest report to site --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>1.8</source> <show>protected</show> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <failOnViolation>true</failOnViolation> </configuration> </plugin> </plugins> </reporting> </project>