Skip to content

Commit 06e933e

Browse files
committed
Adding initial version
0 parents  commit 06e933e

File tree

11 files changed

+1359
-0
lines changed

11 files changed

+1359
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
target
2+
*.iml
3+
build
4+
.DS_Store
5+
6+
# IntelliJ project files
7+
*.iml
8+
*.ipr
9+
*.iws
10+
.idea
11+
12+
# eclipse project file
13+
.settings
14+
.classpath
15+
.project
16+
17+
.DS_Store

pom.xml

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<!--
2+
~ Copyright 2013, CloudBees Inc.
3+
~
4+
~ Licensed under the Apache License, Version 2.0 (the "License");
5+
~ you may not use this file except in compliance with the License.
6+
~ You may obtain a copy of the License at
7+
~
8+
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~
10+
~ Unless required by applicable law or agreed to in writing, software
11+
~ distributed under the License is distributed on an "AS IS" BASIS,
12+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
~ See the License for the specific language governing permissions and
14+
~ limitations under the License.
15+
-->
16+
17+
<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">
18+
<modelVersion>4.0.0</modelVersion>
19+
20+
<parent>
21+
<groupId>com.cloudbees</groupId>
22+
<artifactId>cloudbees-oss-parent</artifactId>
23+
<version>2</version>
24+
</parent>
25+
26+
<artifactId>zendesk-java-client</artifactId>
27+
<version>0.0.1-SNAPSHOT</version>
28+
29+
<name>zendesk-java-client</name>
30+
<description>Java client for the ZenDesk API</description>
31+
<url>https://github.com/cloudbees/zendesk-java-client</url>
32+
<inceptionYear>2013</inceptionYear>
33+
<licenses>
34+
<license>
35+
<name>The Apache Software License, Version 2.0</name>
36+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37+
<distribution>repo</distribution>
38+
</license>
39+
</licenses>
40+
41+
<developers>
42+
<developer>
43+
<name>Stephen Connolly</name>
44+
</developer>
45+
</developers>
46+
47+
<prerequisites>
48+
<maven>3.0.4</maven>
49+
</prerequisites>
50+
51+
<scm>
52+
<connection>scm:git:git://github.com/cloudbees/zendesk-java-client.git</connection>
53+
<developerConnection>scm:git:[email protected]:cloudbees/zendesk-java-client.git</developerConnection>
54+
<url>http://github.com/cloudbees/zendesk-java-client/tree/master/</url>
55+
</scm>
56+
<issueManagement>
57+
58+
</issueManagement>
59+
<ciManagement>
60+
61+
</ciManagement>
62+
63+
<dependencies>
64+
<dependency>
65+
<groupId>org.slf4j</groupId>
66+
<artifactId>slf4j-api</artifactId>
67+
<version>1.7.2</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.ning</groupId>
71+
<artifactId>async-http-client</artifactId>
72+
<version>1.7.12</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>com.fasterxml.jackson.core</groupId>
76+
<artifactId>jackson-core</artifactId>
77+
<version>2.1.4</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>com.fasterxml.jackson.core</groupId>
81+
<artifactId>jackson-databind</artifactId>
82+
<version>2.1.4</version>
83+
</dependency>
84+
<dependency>
85+
<groupId>junit</groupId>
86+
<artifactId>junit</artifactId>
87+
<version>4.11</version>
88+
<scope>test</scope>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.slf4j</groupId>
92+
<artifactId>slf4j-simple</artifactId>
93+
<version>1.7.2</version>
94+
<scope>test</scope>
95+
</dependency>
96+
</dependencies>
97+
98+
<build>
99+
<pluginManagement>
100+
<plugins>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-compiler-plugin</artifactId>
104+
<configuration>
105+
<source>1.5</source>
106+
<target>1.5</target>
107+
</configuration>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-surefire-plugin</artifactId>
112+
<version>2.12</version>
113+
</plugin>
114+
</plugins>
115+
</pluginManagement>
116+
</build>
117+
118+
</project>

0 commit comments

Comments
 (0)