Set version to 4.1.2

This commit is contained in:
0xb00bface 2021-04-09 18:46:35 +02:00
parent 977cee5af0
commit 4f8ffe0736
4 changed files with 60 additions and 5 deletions

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>4.1.1</version>
<version>4.1.2</version>
<relativePath>../master</relativePath>
</parent>
@ -221,7 +221,62 @@
</activation>
<build>
<plugins>
<!--
<plugin>
<groupId>de.perdian.maven.plugins</groupId>
<artifactId>macosappbundler-maven-plugin</artifactId>
<version>1.10.1</version>
<configuration>
<plist>
<CFBundleIconFile>src/main/resources/icon.icns</CFBundleIconFile>
<CFBundleDisplayName>CTB Recorder</CFBundleDisplayName>
<CFBundleDevelopmentRegion>English</CFBundleDevelopmentRegion>
<CFBundleName>ctbrec</CFBundleName>
<CFBundleURLTypes>
<string>msa</string>
</CFBundleURLTypes>
<JVMMainClassName>ctbrec.ui.Launcher</JVMMainClassName>
<JVMVersion>11+</JVMVersion>
<JVMOptions>
<string>-Dfile.encoding=utf-8</string>
</JVMOptions>
<JVMRuntimePath>Contents/Java/jdk/Contents/Home</JVMRuntimePath>
</plist>
<jdk>
<include>true</include>
<location>jre/jdk_macos</location>
</jdk>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>zip</id>
<phase>verify</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>ctbrec-${project.version}</finalName>
<descriptors>
<descriptor>src/assembly/macos-bundle.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
@ -244,4 +299,4 @@
</build>
</profile>
</profiles>
</project>
</project>

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>4.1.1</version>
<version>4.1.2</version>
<relativePath>../master</relativePath>
</parent>

View File

@ -6,7 +6,7 @@
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<packaging>pom</packaging>
<version>4.1.1</version>
<version>4.1.2</version>
<modules>
<module>../common</module>

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>4.1.1</version>
<version>4.1.2</version>
<relativePath>../master</relativePath>
</parent>