-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
90 lines (71 loc) · 2.72 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Variant Experiment Server Standard Extensions
© 2019 Variant Inc. All rights reserved.
To build, run 'mvn package'
-->
<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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<variant.version>1.3.2</variant.version>
</properties>
<name>Variant Server Standard SPI Standard Library</name>
<packaging>jar</packaging>
<groupId>com.variant</groupId>
<artifactId>variant-spi-stdlib</artifactId>
<version>${variant.version}</version>
<dependencies>
<!--
Variant SPI is bootstrapped from local JAR.
-->
<dependency>
<groupId>com.variant</groupId>
<artifactId>variant-spi</artifactId>
<version>${variant.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/variant-spi-${variant.version}.jar</systemPath>
</dependency>
<!--
Alternatively, can be installed in the local Maven repository manually:
mvn install:install-file -Dfile=lib/variant-server-extapi-${variant.version}.jar -DgroupId=com.variant \
-DartifactId=variant-server-extapi -Dversion=${variant.version} -Dpackaging=jar
<dependency>
<groupId>com.variant</groupId>
<artifactId>variant-server-extapi</artifactId>
<version>${variant.version}</version>
</dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
</plugins>
</build>
</project>