-
Notifications
You must be signed in to change notification settings - Fork 12
/
pom.xml
79 lines (67 loc) · 2.72 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
<?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>
<parent>
<groupId>com.github.davidmoten</groupId>
<artifactId>sonatype-parent</artifactId>
<version>0.1</version>
</parent>
<artifactId>jax-maven-plugin-parent</artifactId>
<version>0.3-SNAPSHOT</version>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<url>http://github.com/davidmoten/jax-maven-plugin</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<compiler.plugin.version>3.13.0</compiler.plugin.version>
<jakarta.xml.ws-api.version>3.0.1</jakarta.xml.ws-api.version>
<jaxws.tools.version>3.0.2</jaxws.tools.version>
<jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version>
<jaxb.runtime.version>3.0.2</jaxb.runtime.version>
<junit.version>4.13.2</junit.version>
<scm.url>scm:git:https://github.com/davidmoten/jax-maven-plugin.git</scm.url>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.org/davidmoten/jax-maven-plugin</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/davidmoten/jax-maven-plugin/issues</url>
</issueManagement>
<inceptionYear>2019</inceptionYear>
<developers>
<developer>
<id>dave</id>
<name>Dave Moten</name>
<url>https://github.com/davidmoten/</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+10</timezone>
</developer>
</developers>
<scm>
<connection>${scm.url}</connection>
<developerConnection>${scm.url}</developerConnection>
<url>${scm.url}</url>
<tag>0.1.1</tag>
</scm>
<modules>
<module>jax-maven-plugin-core</module>
<module>jax-maven-plugin</module>
<module>jax-maven-plugin-test-jaxb</module>
<module>jax-maven-plugin-test</module>
</modules>
</project>