This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
85 lines (76 loc) · 3.23 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
<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">
<parent>
<groupId>com.wotif</groupId>
<artifactId>wotif-standards</artifactId>
<version>2013.02.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.wotif.schema</groupId>
<artifactId>ota-schema</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>OTA Schema</name>
<description>OTA Schema XSD and JAXB classes</description>
<url>http://www.wotif.com</url>
<scm>
<connection>scm:git:ssh://git@wothub.core.wotifgroup.com/libraries/${project.artifactId}</connection>
<developerConnection>scm:git:ssh://git@wothub.core.wotifgroup.com/libraries/${project.artifactId}</developerConnection>
<url>https://wothub.core.wotifgroup.com/libraries/${project.artifactId}</url>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>generate</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<extension>true</extension>
<readOnly>true</readOnly>
<strict>true</strict>
<schemaDirectory>${basedir}/src/main/resources/com/wotif/schema/ota</schemaDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.1.10</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.11</version>
</dependency>
</dependencies>
</project>