Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 830581b

Browse files
committedOct 26, 2021
bump version
1 parent c520345 commit 830581b

File tree

7 files changed

+24
-6
lines changed

7 files changed

+24
-6
lines changed
 

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Maven Package](https://github.com/umjammer/rococoa/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/umjammer/rococoa/actions/workflows/maven-publish.yml)
2+
13
#  Welcome to Rococoa
24

35
Rococoa is a generic Java binding to the Mac Objective-C object system. It

‎pom.xml

+10-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>org.rococoa</groupId>
88
<artifactId>rococoa-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>0.8.3-SNAPSHOT</version>
10+
<version>0.8.4</version>
1111

1212
<modules>
1313
<module>rococoa-auto</module>
@@ -148,7 +148,7 @@
148148
<verbose>false</verbose>
149149
<failOnWarnings>false</failOnWarnings>
150150
<failOnError>false</failOnError>
151-
<additionalparam>-Xdoclint:all -Xdoclint:-missing</additionalparam>
151+
<additionalparam>-Xdoclint:none -Xdoclint:-missing</additionalparam>
152152
<doclint>none</doclint>
153153
</configuration>
154154
</execution>
@@ -206,6 +206,14 @@
206206
</dependencies>
207207
</dependencyManagement>
208208

209+
<repositories>
210+
<repository>
211+
<id>github</id>
212+
<name>GitHub umjammer Apache Maven Packages</name>
213+
<url>https://maven.pkg.github.com/umjammer/rococoa-core</url>
214+
</repository>
215+
</repositories>
216+
209217
<dependencies>
210218
<dependency>
211219
<groupId>org.junit.jupiter</groupId>

‎rococoa-auto/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.rococoa</groupId>
1212
<artifactId>rococoa-parent</artifactId>
13-
<version>0.8.3-SNAPSHOT</version>
13+
<version>0.8.4</version>
1414
</parent>
1515

1616
<name>Rococoa Autogenerated Cocoa Package</name>

‎rococoa-cocoa/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.rococoa</groupId>
1212
<artifactId>rococoa-parent</artifactId>
13-
<version>0.8.3-SNAPSHOT</version>
13+
<version>0.8.4</version>
1414
</parent>
1515

1616
<name>Rococoa Cocoa Mappings</name>

‎rococoa-contrib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.rococoa</groupId>
1212
<artifactId>rococoa-parent</artifactId>
13-
<version>0.8.3-SNAPSHOT</version>
13+
<version>0.8.4</version>
1414
</parent>
1515

1616
<name>Rococoa Contrib</name>

‎rococoa-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.rococoa</groupId>
1111
<artifactId>rococoa-parent</artifactId>
12-
<version>0.8.3-SNAPSHOT</version>
12+
<version>0.8.4</version>
1313
</parent>
1414

1515
<name>Rococoa Core</name>

‎rococoa-functionaltest/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323
</plugins>
2424
</build>
2525

26+
<repositories>
27+
<repository>
28+
<id>github</id>
29+
<name>GitHub umjammer Apache Maven Packages</name>
30+
<url>https://maven.pkg.github.com/umjammer/rococoa-core</url>
31+
</repository>
32+
</repositories>
33+
2634
<dependencies>
2735
<dependency>
2836
<groupId>org.rococoa</groupId>

0 commit comments

Comments
 (0)
Please sign in to comment.