Skip to content

Commit 04fcc4c

Browse files
author
Anders Breid
authored
Added jenkins manager rewritten to not use spring (eiffel-community#2)
* Added jenkins manager rewritten to not use spring * Jenkins manager may install plugins, restart jenkins, trigger jobs in different ways depending on job typeramaterers and so on. * Jenkins manager may retsart jenkins. * Jenkins job data file is loaded as itś own class and data is added after. * Added copyright info
1 parent aab670e commit 04fcc4c

File tree

11 files changed

+1375
-0
lines changed

11 files changed

+1375
-0
lines changed

images/logo.png

-1.41 KB
Loading

pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>eiffel-community</groupId>
4+
<artifactId>eiffel-shared-java</artifactId>
5+
<version>0.0.1</version>
6+
<name>eiffel shared java</name>
7+
<description>A shared library for eiffel components</description>
8+
9+
<properties>
10+
<java.version>1.8</java.version>
11+
<maven.compiler.source>${java.version}</maven.compiler.source>
12+
<maven.compiler.target>${java.version}</maven.compiler.target>
13+
</properties>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>javax.ws.rs</groupId>
18+
<artifactId>javax.ws.rs-api</artifactId>
19+
<version>2.1.1</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>commons-io</groupId>
23+
<artifactId>commons-io</artifactId>
24+
<version>2.6</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.apache.httpcomponents</groupId>
28+
<artifactId>httpclient</artifactId>
29+
<version>4.5.3</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.projectlombok</groupId>
33+
<artifactId>lombok</artifactId>
34+
<version>1.16.20</version>
35+
<scope>provided</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.json</groupId>
39+
<artifactId>json</artifactId>
40+
<version>20180130</version>
41+
</dependency>
42+
</dependencies>
43+
</project>

0 commit comments

Comments
 (0)