Skip to content

Commit 93b500b

Browse files
committed
Prepare for WME 2.2.0
1 parent 7aa2e29 commit 93b500b

File tree

10 files changed

+1117
-5
lines changed

10 files changed

+1117
-5
lines changed

build-helper-mojo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<artifactId>wls-exporter-parent</artifactId>
1111
<groupId>com.oracle.wls.exporter</groupId>
12-
<version>2.2.0-SNAPSHOT</version>
12+
<version>2.2.0</version>
1313
</parent>
1414

1515
<artifactId>build-helper-mojo</artifactId>
+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright (c) 2019, 2024, Oracle and/or its affiliates.
4+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
5+
-->
6+
<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">
7+
<modelVersion>4.0.0</modelVersion>
8+
9+
<parent>
10+
<artifactId>wls-exporter-parent</artifactId>
11+
<groupId>com.oracle.wls.exporter</groupId>
12+
<version>2.2.0-SNAPSHOT</version>
13+
</parent>
14+
15+
<artifactId>build-helper-mojo</artifactId>
16+
<packaging>maven-plugin</packaging>
17+
18+
<name>Exporter Build Helper Maven Mojo</name>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>org.apache.maven</groupId>
23+
<artifactId>maven-plugin-api</artifactId>
24+
<version>3.9.6</version>
25+
<scope>provided</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.apache.maven</groupId>
29+
<artifactId>maven-model</artifactId>
30+
<version>3.9.6</version>
31+
<scope>provided</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.apache.maven.plugin-tools</groupId>
35+
<artifactId>maven-plugin-annotations</artifactId>
36+
<version>3.11.0</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.junit.jupiter</groupId>
40+
<artifactId>junit-jupiter</artifactId>
41+
<scope>test</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.ow2.asm</groupId>
45+
<artifactId>asm</artifactId>
46+
<version>9.6</version>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.hamcrest</groupId>
51+
<artifactId>java-hamcrest</artifactId>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.meterware.simplestub</groupId>
56+
<artifactId>simplestub</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>com.google.guava</groupId>
61+
<artifactId>guava</artifactId>
62+
</dependency>
63+
</dependencies>
64+
65+
<build>
66+
<plugins>
67+
<plugin>
68+
<groupId>org.jacoco</groupId>
69+
<artifactId>jacoco-maven-plugin</artifactId>
70+
</plugin>
71+
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-clean-plugin</artifactId>
75+
<version>${maven-clean-plugin-version}</version>
76+
</plugin>
77+
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-plugin-plugin</artifactId>
81+
<version>${maven-plugin-plugin-version}</version>
82+
<configuration>
83+
<goalPrefix>plugin</goalPrefix>
84+
</configuration>
85+
</plugin>
86+
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-install-plugin</artifactId>
90+
<version>${maven-install-plugin-version}</version>
91+
</plugin>
92+
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-site-plugin</artifactId>
96+
<version>${maven-site-plugin-version}</version>
97+
</plugin>
98+
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-deploy-plugin</artifactId>
102+
<version>${maven-deploy-plugin-version}</version>
103+
</plugin>
104+
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-resources-plugin</artifactId>
108+
<version>${maven-resources-plugin-version}</version>
109+
</plugin>
110+
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-jar-plugin</artifactId>
114+
<version>${maven-jar-plugin-version}</version>
115+
</plugin>
116+
</plugins>
117+
</build>
118+
</project>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.oracle.wls.exporter</groupId>
99
<artifactId>wls-exporter-parent</artifactId>
10-
<version>2.2.0-SNAPSHOT</version>
10+
<version>2.2.0</version>
1111
<modules>
1212
<module>build-helper-mojo</module>
1313
<module>wls-exporter-core</module>

0 commit comments

Comments
 (0)