Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Feb 5, 2024
1 parent 304945f commit 1e2bb56
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.rococoa</groupId>
<artifactId>rococoa-parent</artifactId>
<version>0.8.5</version>
<version>0.8.6</version>
<packaging>pom</packaging>

<modules>
Expand Down
6 changes: 3 additions & 3 deletions rococoa-auto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<parent>
<groupId>org.rococoa</groupId>
<artifactId>rococoa-parent</artifactId>
<version>0.8.5</version>
<version>0.8.6</version>
</parent>

<name>Rococoa Autogenerated Cocoa Package</name>
<url>https://github.com/umjammer/rococoa</url>

<properties>
<jnaerator.version>0.13-SNAPSHOT</jnaerator.version>
<jnaerator.version>0.12</jnaerator.version>
</properties>

<build>
Expand Down Expand Up @@ -76,7 +76,7 @@
<dependency>
<groupId>com.nativelibs4java</groupId>
<artifactId>bridj</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion rococoa-cocoa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.rococoa</groupId>
<artifactId>rococoa-parent</artifactId>
<version>0.8.5</version>
<version>0.8.6</version>
</parent>

<name>Rococoa Cocoa Mappings</name>
Expand Down
6 changes: 3 additions & 3 deletions rococoa-contrib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.rococoa</groupId>
<artifactId>rococoa-parent</artifactId>
<version>0.8.5</version>
<version>0.8.6</version>
</parent>

<name>Rococoa Contrib</name>
Expand Down Expand Up @@ -85,12 +85,12 @@
<artifactId>webcam-capture</artifactId>
<version>0.3.12</version>
<scope>test</scope>

</dependency>

<dependency>
<groupId>com.github.eduramiba</groupId>
<artifactId>webcam-capture-driver-native</artifactId>
<version>master-SNAPSHOT</version>
<version>dc4b67c6cc</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
48 changes: 24 additions & 24 deletions rococoa-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.rococoa</groupId>
<artifactId>rococoa-parent</artifactId>
<version>0.8.5</version>
<version>0.8.6</version>
</parent>

<name>Rococoa Core</name>
Expand Down Expand Up @@ -166,36 +166,36 @@
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<!--
because of maven deploy-file uploads source, jar also
TODO maven-metadata.xml!/metadata/versioning/latest is not updated
TODO how about https://stackoverflow.com/a/37552776/6102938
-->
<!--
because of maven deploy-file uploads source, jar also
TODO maven-metadata.xml!/metadata/versioning/latest is not updated
TODO how about https://stackoverflow.com/a/37552776/6102938
-->
<execution>
<id>deploy-library</id>
<phase>deploy</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>mvn</executable>
<arguments>
<argument>deploy:deploy-file</argument>
<argument>-DgroupId=${project.groupId}</argument>
<argument>-DartifactId=${project.artifactId}</argument>
<argument>-Dversion=${project.version}</argument>
<argument>-Dpackaging=dylib</argument>
<configuration>
<executable>mvn</executable>
<arguments>
<argument>deploy:deploy-file</argument>
<argument>-DgroupId=${project.groupId}</argument>
<argument>-DartifactId=${project.artifactId}</argument>
<argument>-Dversion=${project.version}</argument>
<argument>-Dpackaging=dylib</argument>
<argument>-Dfile=${project.build.directory}/librococoa-${project.version}.dylib</argument>
<argument>-DrepositoryId=github</argument>
<argument>-Durl=https://maven.pkg.github.com/umjammer/rococoa</argument>
<argument>-DgeneratePom=false</argument>
<argument>-s</argument>
<argument>${env.GITHUB_WORKSPACE}/settings.xml</argument>
</arguments>
<environmentVariables>
<GITHUB_TOKEN>${env.GITHUB_TOKEN}</GITHUB_TOKEN>
</environmentVariables>
</configuration>
<argument>-DrepositoryId=github</argument>
<argument>-Durl=https://maven.pkg.github.com/umjammer/rococoa</argument>
<argument>-DgeneratePom=false</argument>
<argument>-s</argument>
<argument>${env.GITHUB_WORKSPACE}/settings.xml</argument>
</arguments>
<environmentVariables>
<GITHUB_TOKEN>${env.GITHUB_TOKEN}</GITHUB_TOKEN>
</environmentVariables>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 1e2bb56

Please sign in to comment.