-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
100 lines (99 loc) · 3.85 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<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>com.alexandriasoftware</groupId>
<artifactId>applescript</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<url>https://jmri.github.io/applescript</url>
<name>JMRI AppleScript Support</name>
<description>JMRI AppleScript Support provides optional support in JMRI for AppleScript on Java 8</description>
<organization>
<name>JMRI Project</name>
<url>http://jmri.org</url>
</organization>
<developers>
<developer>
<name>Randall Wood</name>
<email>[email protected]</email>
<roles>
<role>Maintainer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/JMRI/applescript.git</connection>
<developerConnection>scm:git:https://github.com/JMRI/applescript.git</developerConnection>
<url>https://github.com/JMRI/applescript</url>
<tag>site</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/JMRI/applescript/issues</url>
</issueManagement>
<distributionManagement>
<site>
<id>github</id>
<url>scm:git:https://github.com/JMRI/applescript.git</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- define github authentication in settings.xml -->
<github.global.server>github</github.global.server>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.6</version>
<configuration>
<skipDeploy>true</skipDeploy><!-- don't deploy site with maven-site-plugin -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<configuration>
<message>Creating site for ${project.version}</message>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site-deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</reporting>
</project>