This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
106 lines (98 loc) · 3.92 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
98
99
100
101
102
103
104
105
106
<?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>ac.at.tuwien.infosys.visp</groupId>
<artifactId>topologyParser</artifactId>
<version>1.7-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<antlr.version>4.7</antlr.version>
<visp.common.version>0.7</visp.common.version>
<log4j.version>1.2.17</log4j.version>
<apache.commons.lang.version>3.4</apache.commons.lang.version>
<junit.version>4.12</junit.version>
<maven.compiler.plugin.version>3.6.1</maven.compiler.plugin.version>
<maven.release.plugin.version>2.5.3</maven.release.plugin.version>
</properties>
<scm>
<connection>scm:git:https://github.com/visp-streaming/topologyParser</connection>
<developerConnection>scm:git:git@github.com:visp-streaming/topologyParser</developerConnection>
<url>https://github.com/visp-streaming/topologyParser</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/chochreiner/visp/topologyParser/;publish=1</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr.version}</version>
</dependency>
<dependency>
<groupId>ac.at.tuwien.infosys.visp</groupId>
<artifactId>common</artifactId>
<version>${visp.common.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${apache.commons.lang.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>bintray</id>
<url>http://dl.bintray.com/chochreiner/visp</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- TODO remove infosys repositories as soon as bintray proves to be reliable -->
<repository>
<id>infosys</id>
<name>infosys-maven-releases</name>
<url>https://repo.infosys.tuwien.ac.at/artifactory/libs-release</url>
</repository>
<repository>
<id>infosys-snapshots</id>
<name>infosys-maven-snapshots</name>
<url>https://repo.infosys.tuwien.ac.at/artifactory/libs-snapshot</url>
</repository>
</repositories>
</project>