1
0
Fork 0
mirror of https://gitlab.com/kauron/jstudy synced 2024-07-03 08:53:01 +02:00
jstudy/pom.xml

57 lines
1.6 KiB
XML
Raw Normal View History

2016-06-12 00:20:11 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>es.kauron.jstudy</groupId>
<artifactId>jstudy</artifactId>
<packaging>jar</packaging>
2018-01-02 15:32:06 +01:00
<version>0.4.6</version>
2016-06-12 00:20:11 +02:00
<repositories>
<repository>
2019-09-10 19:01:29 +02:00
<id>Central Repository</id>
<url>https://repo.maven.apache.org/maven2</url>
2016-06-12 00:20:11 +02:00
</repository>
</repositories>
<name>jstudy</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
2019-09-10 19:01:29 +02:00
<version>8.0.9</version>
2016-06-12 00:20:11 +02:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
2019-09-10 19:01:29 +02:00
<version>3.8.1</version>
2016-06-12 00:20:11 +02:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>es.kauron.jstudy.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
</project>