-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
125 lines (120 loc) · 4.23 KB
/
pom.xml
File metadata and controls
125 lines (120 loc) · 4.23 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<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.cybertaxonomy</groupId>
<artifactId>utis-client</artifactId>
<packaging>jar</packaging>
<version>1.2.0</version>
<name>utis-client</name>
<properties>
<swagger-codegen-cli.version>2.1.4</swagger-codegen-cli.version>
<utis-client.version>1.0</utis-client.version>
</properties>
<repositories>
<repository>
<id>EditRepository</id>
<url>http://dev.e-taxonomy.eu/mavenrepo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.cybertaxonomy</groupId>
<artifactId>utis-client</artifactId>
<version>${utis-client.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-cli</artifactId>
<version>${swagger-codegen-cli.version}</version>
<type>jar</type>
<!-- <classifier> [classifier - optional] </classifier> -->
<overWrite>true</overWrite>
<destFileName>swagger-codegen-cli.jar</destFileName>
<outputDirectory>${project.build.directory}/lib/</outputDirectory>
</artifactItem>
</artifactItems>
<silent>flase</silent>
<stripVersion>true</stripVersion>
<overWriteSnapshots>true</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<overWriteReleases>true</overWriteReleases>
</configuration>
<executions>
<execution>
<id>copy</id>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>2.1.4</version>
<configuration>
<inputSpec>src/main/resources/utis-controller.json</inputSpec>
<language>java</language>
<configOptions>
<sourceFolder>src/gen/java/main/org/cybertaxonomy/utis/client</sourceFolder>
</configOptions>
</configuration>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<!-- Run with:
mvn bash:run
mvn install
-->
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>bash-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<id>test</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
<script>
# Here you can execute shell commands
echo "starting client creation"
./download_utis_controller_def.sh
echo "generating client sources"
java -jar ./target/swagger-codegen.jar generate \
-i src/main/resources/utis-controller.json -l java \
-o ./target/client/src/java/
</script>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>