generated from OPTIMAL-SOLUTION-org/jdecor-pojo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
97 lines (83 loc) · 3.29 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.optsol.jmip</groupId>
<artifactId>jmip-pojo-template</artifactId>
<version>2.x.x-SNAPSHOT</version>
<!-- Properties -->
<properties>
<source-encoding>UTF-8</source-encoding>
<output-encoding>UTF-8</output-encoding>
<project.build.sourceEncoding>${source-encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${output-encoding}</project.reporting.outputEncoding>
<java.version>11</java.version>
<jmip-version>2.0.0</jmip-version>
<junit-jupiter-version>5.11.4</junit-jupiter-version>
<lombok-version>1.18.36</lombok-version>
<slf4j-version>2.0.16</slf4j-version>
</properties>
<developers>
<developer>
<name>Philipp Fath</name>
<email>[email protected]</email>
<organization>OPTIMAL SOLUTION</organization>
<organizationUrl>https://www.optimal-solution.org</organizationUrl>
</developer>
<developer>
<name>David Sayah</name>
<email>[email protected]</email>
<organization>OPTIMAL SOLUTION</organization>
<organizationUrl>https://www.optimal-solution.org</organizationUrl>
</developer>
</developers>
<name>jMIP Pojo Template</name>
<description>...a good point to start your optimization project</description>
<url>https://github.com/OPTIMAL-SOLUTION-org</url>
<dependencies>
<dependency>
<groupId>org.optsol.jmip</groupId>
<artifactId>jmip-ortools-linearsolver</artifactId>
<version>${jmip-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j-version}</version>
</dependency>
<!--TEST DEPENDENCIES-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-version}</version>
<scope>test</scope>
</dependency>
<!--PROVIDED DEPENDENCIES-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>optimal-solution</id>
<url>https://maven.optimal-solution.org/repository/releases/</url>
</repository>
</repositories>
</project>