-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpom.xml
More file actions
46 lines (40 loc) · 1.49 KB
/
pom.xml
File metadata and controls
46 lines (40 loc) · 1.49 KB
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
<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.raphaeljolivet.java2typescript</groupId>
<artifactId>java2typescript</artifactId>
<version>v0.3.2-SNAPSHOT</version>
</parent>
<artifactId>sample-web-app-client</artifactId>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.apache.cxf.version>2.7.2</org.apache.cxf.version>
<org.springframework.version>3.2.0.RELEASE</org.springframework.version>
<org.eclipse.jetty.version>8.1.8.v20121106</org.eclipse.jetty.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.github.raphaeljolivet.java2typescript</groupId>
<artifactId>java2typescript-maven-plugin</artifactId>
<version>v0.3.2-SNAPSHOT</version>
<configuration>
<serviceClass>com.example.rs.PeopleRestService</serviceClass>
<moduleName>People</moduleName>
<tsOutFolder>${project.build.directory}</tsOutFolder>
<jsOutFolder>${project.build.directory}</jsOutFolder>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>https://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
</project>