pom.xml
branchv_0
changeset 39 ec0e970e0830
child 40 1978eaf429de
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Sat Dec 16 20:13:13 2023 +0100
     1.3 @@ -0,0 +1,42 @@
     1.4 +<project
     1.5 +	xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.7 +	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
     1.8 +		https://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.9 +
    1.10 +	<modelVersion>4.0.0</modelVersion>
    1.11 +    
    1.12 +	<groupId>cz.frantovo.xattr</groupId>
    1.13 +	<artifactId>rozsirene-atributy</artifactId>
    1.14 +	<version>0.1-SNAPSHOT</version>
    1.15 +	<packaging>jar</packaging>
    1.16 +
    1.17 +	<properties>
    1.18 +		<maven.compiler.source>1.7</maven.compiler.source>
    1.19 +		<maven.compiler.target>1.7</maven.compiler.target>
    1.20 +		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
    1.21 +		<project.reporting.outputEncoding
    1.22 +		>UTF-8</project.reporting.outputEncoding>
    1.23 +		<main-class>cz.frantovo.rozsireneatributy.Startér</main-class>
    1.24 +	</properties>
    1.25 +	
    1.26 +	<build>
    1.27 +		<plugins>
    1.28 +			<plugin>
    1.29 +				<groupId>org.apache.maven.plugins</groupId>
    1.30 +				<artifactId>maven-jar-plugin</artifactId>
    1.31 +				<version>3.3.0</version>
    1.32 +				<configuration>
    1.33 +					<archive>
    1.34 +						<index>true</index>
    1.35 +						<manifest>
    1.36 +							<addClasspath>true</addClasspath>
    1.37 +							<mainClass>${main-class}</mainClass>
    1.38 +						</manifest>
    1.39 +					</archive>
    1.40 +				</configuration>
    1.41 +			</plugin>
    1.42 +		</plugins>
    1.43 +	</build>
    1.44 +
    1.45 +</project>