This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
94 lines (84 loc) · 3.18 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.xtreemfs.opendmk</groupId>
<artifactId>opendmk-parent</artifactId>
<version>1.1-b02-SNAPSHOT</version>
<name>opendmk</name>
<packaging>pom</packaging>
<url>https://github.com/xtreemfs/opendmk</url>
<inceptionYear>2016</inceptionYear>
<licenses>
<license>
<name>Common Development and Distribution License</name>
<url>https://opendmk.java.net/legal_notices/LICENSE_CDDL.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/xtreemfs/opendmk</url>
<connection>[email protected]:xtreemfs/opendmk.git</connection>
<developerConnection>scm:git:https://github.com/xtreemfs/opendmk.git</developerConnection>
</scm>
<modules>
<module>jmxremote_optional</module>
<module>jdmkrt</module>
<module>jdmktk</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github</github.global.server>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
<maven-jar-plugin.version>2.6</maven-jar-plugin.version>
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
<site-maven-plugin.version>0.11</site-maven-plugin.version>
</properties>
<distributionManagement>
<repository>
<id>xtreemfs-opendmk-repository</id>
<url>file://${project.build.directory}/xtreemfs-opendmk-repository</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<altDeploymentRepository>xtreemfs-opendmk-repository::default::file://${project.build.directory}/xtreemfs-opendmk-repository</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${site-maven-plugin.version}</version>
<configuration>
<merge>true</merge>
<message>Maven artifacts for ${project.name}/${project.version}</message>
<noJekyll>true</noJekyll>
<outputDirectory>${project.build.directory}/xtreemfs-opendmk-repository</outputDirectory>
<repositoryName>opendmk</repositoryName>
<repositoryOwner>xtreemfs</repositoryOwner>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>