možnost spustit program přes Maven: mvn install exec:java v_0
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 16 Dec 2023 23:54:00 +0100
branchv_0
changeset 401978eaf429de
parent 39 ec0e970e0830
child 41 64e564c2f069
možnost spustit program přes Maven: mvn install exec:java
pom.xml
src/main/java/cz/frantovo/rozsireneatributy/CSV.java
src/main/java/cz/frantovo/rozsireneatributy/gui/Model.java
     1.1 --- a/pom.xml	Sat Dec 16 20:13:13 2023 +0100
     1.2 +++ b/pom.xml	Sat Dec 16 23:54:00 2023 +0100
     1.3 @@ -23,6 +23,7 @@
     1.4  	<build>
     1.5  		<plugins>
     1.6  			<plugin>
     1.7 +				<!-- přidání hlavní/spustitelné třídy do MANIFEST.MF -->
     1.8  				<groupId>org.apache.maven.plugins</groupId>
     1.9  				<artifactId>maven-jar-plugin</artifactId>
    1.10  				<version>3.3.0</version>
    1.11 @@ -36,6 +37,19 @@
    1.12  					</archive>
    1.13  				</configuration>
    1.14  			</plugin>
    1.15 +			<plugin>
    1.16 +				<!-- spuštění programu: mvn install exec:java -->
    1.17 +				<groupId>org.codehaus.mojo</groupId>
    1.18 +				<artifactId>exec-maven-plugin</artifactId>
    1.19 +				<version>3.1.1</version>
    1.20 +				<configuration>
    1.21 +					<mainClass>${main-class}</mainClass>
    1.22 +					<arguments>
    1.23 +						<argument>--soubor</argument>
    1.24 +						<argument>target</argument>
    1.25 +					</arguments>
    1.26 +				</configuration>
    1.27 +			</plugin>
    1.28  		</plugins>
    1.29  	</build>
    1.30  
     2.1 --- a/src/main/java/cz/frantovo/rozsireneatributy/CSV.java	Sat Dec 16 20:13:13 2023 +0100
     2.2 +++ b/src/main/java/cz/frantovo/rozsireneatributy/CSV.java	Sat Dec 16 23:54:00 2023 +0100
     2.3 @@ -22,7 +22,7 @@
     2.4  /**
     2.5   * Generátor standardních CSV.
     2.6   *
     2.7 - * @author Ing. František Kučera
     2.8 + * @author Ing. František Kučera (frantovo.cz)
     2.9   */
    2.10  public class CSV {
    2.11  
     3.1 --- a/src/main/java/cz/frantovo/rozsireneatributy/gui/Model.java	Sat Dec 16 20:13:13 2023 +0100
     3.2 +++ b/src/main/java/cz/frantovo/rozsireneatributy/gui/Model.java	Sat Dec 16 23:54:00 2023 +0100
     3.3 @@ -18,7 +18,6 @@
     3.4  
     3.5  import cz.frantovo.rozsireneatributy.Atribut;
     3.6  import cz.frantovo.rozsireneatributy.Konfigurace;
     3.7 -import java.io.File;
     3.8  import java.io.IOException;
     3.9  import java.io.RandomAccessFile;
    3.10  import java.nio.ByteBuffer;