forked from j62/ctbrec
Set version to 4.1.2
This commit is contained in:
parent
977cee5af0
commit
4f8ffe0736
|
@ -8,7 +8,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<version>4.1.1</version>
|
<version>4.1.2</version>
|
||||||
<relativePath>../master</relativePath>
|
<relativePath>../master</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -221,7 +221,62 @@
|
||||||
</activation>
|
</activation>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<!--
|
||||||
<plugin>
|
<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>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.1.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
|
@ -244,4 +299,4 @@
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
</project>
|
</project>
|
|
@ -8,7 +8,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<version>4.1.1</version>
|
<version>4.1.2</version>
|
||||||
<relativePath>../master</relativePath>
|
<relativePath>../master</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>4.1.1</version>
|
<version>4.1.2</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>../common</module>
|
<module>../common</module>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<version>4.1.1</version>
|
<version>4.1.2</version>
|
||||||
<relativePath>../master</relativePath>
|
<relativePath>../master</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue