Skip to content

Commit

Permalink
Prepare for WME 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeberhard committed Mar 15, 2024
1 parent 7aa2e29 commit 93b500b
Show file tree
Hide file tree
Showing 10 changed files with 1,117 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build-helper-mojo/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>wls-exporter-parent</artifactId>
<groupId>com.oracle.wls.exporter</groupId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
</parent>

<artifactId>build-helper-mojo</artifactId>
Expand Down
118 changes: 118 additions & 0 deletions build-helper-mojo/pom.xml.versionsBackup
@@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2019, 2024, Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
-->
<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>

<parent>
<artifactId>wls-exporter-parent</artifactId>
<groupId>com.oracle.wls.exporter</groupId>
<version>2.2.0-SNAPSHOT</version>
</parent>

<artifactId>build-helper-mojo</artifactId>
<packaging>maven-plugin</packaging>

<name>Exporter Build Helper Maven Mojo</name>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.9.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.11.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.meterware.simplestub</groupId>
<artifactId>simplestub</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean-plugin-version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin-plugin-version}</version>
<configuration>
<goalPrefix>plugin</goalPrefix>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven-install-plugin-version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site-plugin-version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin-version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin-version}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin-version}</version>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@

<groupId>com.oracle.wls.exporter</groupId>
<artifactId>wls-exporter-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
<modules>
<module>build-helper-mojo</module>
<module>wls-exporter-core</module>
Expand Down

0 comments on commit 93b500b

Please sign in to comment.