back to the snapshot: 0.2-SNAPSHOT v_0 tip
authorFrantišek Kučera <franta-hg@frantovo.cz>
Mon, 25 Dec 2023 23:45:13 +0100
branchv_0
changeset 44c43c96b0ab1b
parent 43 d65966d31bbd
back to the snapshot: 0.2-SNAPSHOT
Makefile
build.xml
pom.xml
rozšířené-atributy.sh
     1.1 --- a/Makefile	Mon Dec 25 23:39:34 2023 +0100
     1.2 +++ b/Makefile	Mon Dec 25 23:45:13 2023 +0100
     1.3 @@ -16,7 +16,7 @@
     1.4  SRC=$(shell find src -name '*.java')
     1.5  MAIN=cz.frantovo.rozsireneatributy.Startér
     1.6  LAF=-Dswing.defaultlaf=javax.swing.plaf.nimbus.NimbusLookAndFeel
     1.7 -VERSION=0.1-SNAPSHOT
     1.8 +VERSION=0.2-SNAPSHOT
     1.9  JAR=target/rozsirene-atributy-$(VERSION).jar
    1.10  
    1.11  all: $(JAR)
     2.1 --- a/build.xml	Mon Dec 25 23:39:34 2023 +0100
     2.2 +++ b/build.xml	Mon Dec 25 23:45:13 2023 +0100
     2.3 @@ -17,7 +17,7 @@
     2.4  -->
     2.5  <project name="rozšířené-atributy" basedir="." default="jar">
     2.6  
     2.7 -	<property name="VERSION" value="0.1-SNAPSHOT"/>
     2.8 +	<property name="VERSION" value="0.2-SNAPSHOT"/>
     2.9  	<property name="JAR" value="target/rozsirene-atributy-${VERSION}.jar"/>
    2.10  	<property name="MAIN" value="cz.frantovo.rozsireneatributy.Startér"/>
    2.11  	<property
     3.1 --- a/pom.xml	Mon Dec 25 23:39:34 2023 +0100
     3.2 +++ b/pom.xml	Mon Dec 25 23:45:13 2023 +0100
     3.3 @@ -8,7 +8,7 @@
     3.4      
     3.5  	<groupId>cz.frantovo.xattr</groupId>
     3.6  	<artifactId>rozsirene-atributy</artifactId>
     3.7 -	<version>0.1-SNAPSHOT</version>
     3.8 +	<version>0.2-SNAPSHOT</version>
     3.9  	<packaging>jar</packaging>
    3.10  
    3.11  	<properties>
     4.1 --- a/rozšířené-atributy.sh	Mon Dec 25 23:39:34 2023 +0100
     4.2 +++ b/rozšířené-atributy.sh	Mon Dec 25 23:45:13 2023 +0100
     4.3 @@ -5,7 +5,7 @@
     4.4  JAVA_BIN="java";
     4.5  SWING_LAF="-Dswing.defaultlaf=com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel";
     4.6  SWING_LAF="-Dswing.defaultlaf=javax.swing.plaf.nimbus.NimbusLookAndFeel";
     4.7 -VER="0.1-SNAPSHOT"
     4.8 +VER="0.2-SNAPSHOT"
     4.9  JAR="$(dirname $(realpath $0))/target/rozsirene-atributy-${VER}.jar";
    4.10  
    4.11  ${JAVA_BIN} ${SWING_LAF} -jar ${JAR} "${@}";