Skip to content

Commit

Permalink
Prep for v2.12.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sabre1041 authored and rpelisse committed Aug 16, 2021
1 parent 44e645d commit a0e62a2
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 45 deletions.
9 changes: 9 additions & 0 deletions RELEASES
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v2.12.8:
- created homebrew release process
- rules for activemq
- rules for mod_cluster
- updates for security realm
- updates to rpm generation
v2.12.7:
- rules for Keycloak
- minor fix for socket bindings
v2.12.6:
- adding rule for interface
v2.12.5:
Expand Down
2 changes: 1 addition & 1 deletion jcliff.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: jcliff
Version: 2.12.7
Version: 2.12.8
Release: 1%{?dist}
Summary: JBoss configuration client front-end
License: 2013, Red Hat, Inc. and/or its affiliates.
Expand Down
85 changes: 42 additions & 43 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<groupId>com.redhat.util</groupId>
<artifactId>jcliff</artifactId>
<packaging>jar</packaging>
<version>2.12.7</version>
<version>2.12.8</version>
<name>JBoss configuration client front-end</name>
<developers>
<developer>
Expand All @@ -46,34 +46,34 @@
</contributors>
<repositories>
<repository>
<id>nexus</id>
<name>JBoss repo</name>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>nexus</id>
<name>JBoss repo</name>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.google.code.cookcc</groupId>
<artifactId>cookcc</artifactId>
<version>0.3.3</version>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-dmr</artifactId>
<version>1.1.1.Final</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.cookcc</groupId>
<artifactId>cookcc</artifactId>
<version>0.3.3</version>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-dmr</artifactId>
<version>1.1.1.Final</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down Expand Up @@ -108,12 +108,11 @@
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
<configuration>
</configuration>
</executions>
<configuration></configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -187,7 +186,7 @@
<source>
<location>src/main/resources</location>
<includes>
<include>*</include>
<include>*</include>
</includes>
</source>
</sources>
Expand All @@ -196,29 +195,29 @@
<directory>/usr/share/jcliff-${project.version}</directory>
<filemode>755</filemode>
<sources>
<source>
<destination>jcliff</destination>
<location>src/main/scripts/jcliff</location>
<source>
<destination>jcliff</destination>
<location>src/main/scripts/jcliff</location>
</source>
</sources>
</mapping>
<mapping>
<directory>/usr/share/</directory>
<filemode>755</filemode>
<sources>
<softlinkSource>
<destination>jcliff</destination>
<location>/usr/share/jcliff-${project.version}</location>
<softlinkSource>
<destination>jcliff</destination>
<location>/usr/share/jcliff-${project.version}</location>
</softlinkSource>
</sources>
</mapping>
<mapping>
<directory>/usr/bin</directory>
<sources>
<softlinkSource>
<destination>jcliff</destination>
<location>/usr/share/jcliff-${project.version}/jcliff</location>
</softlinkSource>
<softlinkSource>
<destination>jcliff</destination>
<location>/usr/share/jcliff-${project.version}/jcliff</location>
</softlinkSource>
</sources>
</mapping>
</mappings>
Expand All @@ -227,6 +226,6 @@
</plugins>
</build>
<properties>
<rpm.release>1</rpm.release>
<rpm.release>1</rpm.release>
</properties>
</project>
</project>
2 changes: 1 addition & 1 deletion src/main/java/com/redhat/jcliff/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
public class Main {

private static final String VERSION="2.12.7";
private static final String VERSION="2.12.8";

private static final HashSet<String> specialRules=new HashSet<String>();

Expand Down

0 comments on commit a0e62a2

Please sign in to comment.