Skip to content

Commit e53f514

Browse files
pom.xml added
1 parent 0c18bb1 commit e53f514

File tree

4 files changed

+11
-53
lines changed

4 files changed

+11
-53
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contentstack-java.iml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
1010
<excludeFolder url="file://$MODULE_DIR$/target" />
1111
</content>
12-
<orderEntry type="inheritedJdk" />
12+
<orderEntry type="jdk" jdkName="1.8" jdkType="JavaSDK" />
1313
<orderEntry type="sourceFolder" forTests="false" />
1414
<orderEntry type="library" name="org.json:json:20131018" level="project" />
1515
<orderEntry type="library" name="junit:junit:4.12" level="project" />
16-
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
17-
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
16+
<orderEntry type="library" scope="PROVIDED" name="Maven: junit:junit:4.12" level="project" />
17+
<orderEntry type="library" scope="PROVIDED" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
1818
<orderEntry type="library" name="Maven: org.json:json:20131018" level="project" />
1919
</component>
2020
</module>

pom.xml

Lines changed: 7 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@
1717
<build>
1818
<plugins>
1919

20+
<!--'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing.-->
2021
<plugin>
2122
<groupId>org.apache.maven.plugins</groupId>
2223
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>2.3.2</version>
2325
<configuration>
2426
<source>8</source>
2527
<target>8</target>
@@ -38,6 +40,7 @@
3840
</configuration>
3941
</plugin>
4042

43+
4144
<plugin>
4245
<groupId>org.apache.maven.plugins</groupId>
4346
<artifactId>maven-source-plugin</artifactId>
@@ -52,6 +55,7 @@
5255
</executions>
5356
</plugin>
5457

58+
5559
<plugin>
5660
<groupId>org.apache.maven.plugins</groupId>
5761
<artifactId>maven-javadoc-plugin</artifactId>
@@ -66,21 +70,6 @@
6670
</executions>
6771
</plugin>
6872

69-
<plugin>
70-
<groupId>org.apache.maven.plugins</groupId>
71-
<artifactId>maven-gpg-plugin</artifactId>
72-
<version>1.5</version>
73-
<executions>
74-
<execution>
75-
<id>sign-artifacts</id>
76-
<phase>verify</phase>
77-
<goals>
78-
<goal>sign</goal>
79-
</goals>
80-
</execution>
81-
</executions>
82-
</plugin>
83-
8473

8574
<plugin>
8675
<groupId>org.apache.maven.plugins</groupId>
@@ -97,17 +86,6 @@
9786
</executions>
9887
</plugin>
9988

100-
<plugin>
101-
<groupId>org.sonatype.plugins</groupId>
102-
<artifactId>nexus-staging-maven-plugin</artifactId>
103-
<version>1.6.7</version>
104-
<extensions>true</extensions>
105-
<configuration>
106-
<serverId>ossrh</serverId>
107-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
108-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
109-
</configuration>
110-
</plugin>
11189

11290
</plugins>
11391
</build>
@@ -149,31 +127,22 @@
149127
<url>https://github.com/contentstack/contentstack-java</url>
150128
</scm>
151129

130+
152131
<dependencies>
153132

154133
<dependency>
155134
<groupId>junit</groupId>
156135
<artifactId>junit</artifactId>
157-
<version>RELEASE</version>
158-
<scope>test</scope>
136+
<version>4.12</version>
137+
<scope>provided</scope>
159138
</dependency>
160139

161-
<!-- https://mvnrepository.com/artifact/org.json/json -->
162140
<dependency>
163141
<groupId>org.json</groupId>
164142
<artifactId>json</artifactId>
165143
<version>20131018</version>
166144
</dependency>
167145

168-
<!-- https://mvnrepository.com/artifact/junit/junit -->
169-
<dependency>
170-
<groupId>junit</groupId>
171-
<artifactId>junit</artifactId>
172-
<version>4.12</version>
173-
<scope>test</scope>
174-
</dependency>
175-
176-
177146
</dependencies>
178147

179148

profiles.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)