-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpom.xml
51 lines (48 loc) · 1.75 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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.obermuhlner</groupId>
<artifactId>java-scriptengine</artifactId>
<version>2.1.0</version>
<name>Java ScriptEngine</name>
<description>Java script engine for Java as a scripting language.</description>
<url>https://github.com/eobermuhlner/java-scriptengine</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://raw.githubusercontent.com/eobermuhlner/java-scriptengine/master/LICENSE.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>eobermuhlner</id>
<name>Eric Obermuhlner</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/java-scriptengine.git</connection>
<developerConnection>scm:ssh://github.com:eobermuhlner/java-scriptengine.git</developerConnection>
<url>https://github.com/eobermuhlner/java-scriptengine/</url>
</scm>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>