|
3 | 3 | <groupId>io.kubernetes</groupId> |
4 | 4 | <artifactId>client-java-api-fluent-gen</artifactId> |
5 | 5 | <packaging>bundle</packaging> |
6 | | - <name>client-java-api</name> |
| 6 | + <name>client-java-fluent-gen</name> |
7 | 7 | <url>https://github.com/kubernetes-client/java</url> |
8 | | - <description>Swagger Java</description> |
| 8 | + <description>Client Java Fluent Generator</description> |
9 | 9 | <prerequisites> |
10 | 10 | <maven>2.2.0</maven> |
11 | 11 | </prerequisites> |
|
22 | 22 | <plugin> |
23 | 23 | <groupId>org.apache.felix</groupId> |
24 | 24 | <artifactId>maven-bundle-plugin</artifactId> |
25 | | - <extensions>true</extensions> |
26 | | - </plugin> |
27 | | - <plugin> |
28 | | - <groupId>org.apache.maven.plugins</groupId> |
29 | | - <artifactId>maven-surefire-plugin</artifactId> |
30 | | - <configuration> |
31 | | - <systemProperties> |
32 | | - <property> |
33 | | - <name>loggerPath</name> |
34 | | - <value>conf/log4j.properties</value> |
35 | | - </property> |
36 | | - </systemProperties> |
37 | | - <argLine>-Xms512m -Xmx1500m</argLine> |
38 | | - <parallel>methods</parallel> |
39 | | - <useUnlimitedThreads>true</useUnlimitedThreads> |
40 | | - <forkCount>1</forkCount> |
41 | | - <reuseForks>false</reuseForks> |
42 | | - </configuration> |
43 | | - </plugin> |
44 | | - <plugin> |
45 | | - <artifactId>maven-dependency-plugin</artifactId> |
46 | | - <executions> |
47 | | - <execution> |
48 | | - <phase>package</phase> |
49 | | - <goals> |
50 | | - <goal>copy-dependencies</goal> |
51 | | - </goals> |
52 | | - <configuration> |
53 | | - <outputDirectory>${project.build.directory}/lib</outputDirectory> |
54 | | - </configuration> |
55 | | - </execution> |
56 | | - </executions> |
57 | | - </plugin> |
58 | | - |
59 | | - <!-- attach test jar --> |
60 | | - <plugin> |
61 | | - <groupId>org.apache.maven.plugins</groupId> |
62 | | - <artifactId>maven-jar-plugin</artifactId> |
63 | | - <executions> |
64 | | - <execution> |
65 | | - <goals> |
66 | | - <goal>test-jar</goal> |
67 | | - </goals> |
68 | | - </execution> |
69 | | - </executions> |
70 | | - <configuration> |
71 | | - </configuration> |
72 | | - </plugin> |
73 | | - |
74 | | - <plugin> |
75 | | - <groupId>org.codehaus.mojo</groupId> |
76 | | - <artifactId>build-helper-maven-plugin</artifactId> |
77 | | - <executions> |
78 | | - <execution> |
79 | | - <id>add_sources</id> |
80 | | - <phase>generate-sources</phase> |
81 | | - <goals> |
82 | | - <goal>add-source</goal> |
83 | | - </goals> |
84 | | - <configuration> |
85 | | - <sources> |
86 | | - <source>src/main/java</source> |
87 | | - </sources> |
88 | | - </configuration> |
89 | | - </execution> |
90 | | - <execution> |
91 | | - <id>add_test_sources</id> |
92 | | - <phase>generate-test-sources</phase> |
93 | | - <goals> |
94 | | - <goal>add-test-source</goal> |
95 | | - </goals> |
96 | | - <configuration> |
97 | | - <sources> |
98 | | - <source>src/test/java</source> |
99 | | - </sources> |
100 | | - </configuration> |
101 | | - </execution> |
102 | | - </executions> |
103 | | - </plugin> |
104 | | - <plugin> |
105 | | - <groupId>org.apache.maven.plugins</groupId> |
106 | | - <artifactId>maven-javadoc-plugin</artifactId> |
107 | | - <executions> |
108 | | - <execution> |
109 | | - <id>attach-javadocs</id> |
110 | | - <goals> |
111 | | - <goal>jar</goal> |
112 | | - </goals> |
113 | | - </execution> |
114 | | - </executions> |
115 | | - <configuration> |
116 | | - <tags> |
117 | | - <tag> |
118 | | - <name>http.response.details</name> |
119 | | - <placement>a</placement> |
120 | | - <head>Http Response Details:</head> |
121 | | - </tag> |
122 | | - </tags> |
123 | | - </configuration> |
124 | | - </plugin> |
125 | | - <plugin> |
126 | | - <groupId>org.apache.maven.plugins</groupId> |
127 | | - <artifactId>maven-source-plugin</artifactId> |
128 | | - <executions> |
129 | | - <execution> |
130 | | - <id>attach-sources</id> |
131 | | - <goals> |
132 | | - <goal>jar-no-fork</goal> |
133 | | - </goals> |
134 | | - </execution> |
135 | | - </executions> |
| 25 | + <version>5.1.2</version> |
136 | 26 | </plugin> |
137 | 27 | </plugins> |
138 | 28 | </build> |
|
187 | 77 | <artifactId>client-java-api</artifactId> |
188 | 78 | <version>${project.version}</version> |
189 | 79 | </dependency> |
190 | | - |
191 | | - <!-- test dependencies --> |
192 | | - <dependency> |
193 | | - <groupId>org.hamcrest</groupId> |
194 | | - <artifactId>hamcrest-junit</artifactId> |
195 | | - <scope>test</scope> |
196 | | - </dependency> |
197 | | - <dependency> |
198 | | - <groupId>ch.qos.logback</groupId> |
199 | | - <artifactId>logback-classic</artifactId> |
200 | | - <scope>test</scope> |
201 | | - </dependency> |
202 | | - <dependency> |
203 | | - <groupId>junit</groupId> |
204 | | - <artifactId>junit</artifactId> |
205 | | - <scope>test</scope> |
206 | | - </dependency> |
207 | 80 | </dependencies> |
208 | 81 | </project> |
0 commit comments