|
17 | 17 | <build> |
18 | 18 | <plugins> |
19 | 19 |
|
| 20 | + <!--'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing.--> |
20 | 21 | <plugin> |
21 | 22 | <groupId>org.apache.maven.plugins</groupId> |
22 | 23 | <artifactId>maven-compiler-plugin</artifactId> |
| 24 | + <version>2.3.2</version> |
23 | 25 | <configuration> |
24 | 26 | <source>8</source> |
25 | 27 | <target>8</target> |
|
38 | 40 | </configuration> |
39 | 41 | </plugin> |
40 | 42 |
|
| 43 | + |
41 | 44 | <plugin> |
42 | 45 | <groupId>org.apache.maven.plugins</groupId> |
43 | 46 | <artifactId>maven-source-plugin</artifactId> |
|
52 | 55 | </executions> |
53 | 56 | </plugin> |
54 | 57 |
|
| 58 | + |
55 | 59 | <plugin> |
56 | 60 | <groupId>org.apache.maven.plugins</groupId> |
57 | 61 | <artifactId>maven-javadoc-plugin</artifactId> |
|
66 | 70 | </executions> |
67 | 71 | </plugin> |
68 | 72 |
|
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 | | - |
84 | 73 |
|
85 | 74 | <plugin> |
86 | 75 | <groupId>org.apache.maven.plugins</groupId> |
|
97 | 86 | </executions> |
98 | 87 | </plugin> |
99 | 88 |
|
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> |
111 | 89 |
|
112 | 90 | </plugins> |
113 | 91 | </build> |
|
149 | 127 | <url>https://github.com/contentstack/contentstack-java</url> |
150 | 128 | </scm> |
151 | 129 |
|
| 130 | + |
152 | 131 | <dependencies> |
153 | 132 |
|
154 | 133 | <dependency> |
155 | 134 | <groupId>junit</groupId> |
156 | 135 | <artifactId>junit</artifactId> |
157 | | - <version>RELEASE</version> |
158 | | - <scope>test</scope> |
| 136 | + <version>4.12</version> |
| 137 | + <scope>provided</scope> |
159 | 138 | </dependency> |
160 | 139 |
|
161 | | - <!-- https://mvnrepository.com/artifact/org.json/json --> |
162 | 140 | <dependency> |
163 | 141 | <groupId>org.json</groupId> |
164 | 142 | <artifactId>json</artifactId> |
165 | 143 | <version>20131018</version> |
166 | 144 | </dependency> |
167 | 145 |
|
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 | | - |
177 | 146 | </dependencies> |
178 | 147 |
|
179 | 148 |
|
|
0 commit comments