File tree 3 files changed +18
-6
lines changed
main/java/org/reficio/p2/utils
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 22
22
<maven .plugin.plugin.version>3.3</maven .plugin.plugin.version>
23
23
<!-- actually a dependency here. -->
24
24
<dependency .maven.bundle.plugin.version>4.2.1</dependency .maven.bundle.plugin.version>
25
- <tycho .version>1.0 .0</tycho .version>
25
+ <tycho .version>1.7 .0</tycho .version>
26
26
27
27
<sonatype .aether.version>1.13.1</sonatype .aether.version>
28
28
<eclipse .aether.version>1.1.0</eclipse .aether.version>
84
84
<artifactId >biz.aQute.bndlib</artifactId >
85
85
<version >5.2.0</version >
86
86
</dependency >
87
+ <!-- needed due to dependency conflict tycho-1.7.0 and its transitive dependencies -->
88
+ <dependency >
89
+ <groupId >org.eclipse.platform</groupId >
90
+ <artifactId >org.eclipse.osgi</artifactId >
91
+ <version >3.15.200</version >
92
+ </dependency >
87
93
88
94
<!-- 3.0 used by tycho. Force the target maven version here. -->
89
95
<dependency >
212
218
</exclusions >
213
219
</dependency >
214
220
221
+ <!-- osgi log to avoid Security Exceptions at runtime (due to different hash of org.eclipse.osgi's Logger) -->
222
+ <dependency >
223
+ <groupId >org.osgi</groupId >
224
+ <artifactId >org.osgi.service.log</artifactId >
225
+ <version >1.4.0</version >
226
+ </dependency >
227
+
215
228
<dependency >
216
229
<groupId >org.eclipse.tycho</groupId >
217
230
<artifactId >tycho-core</artifactId >
249
262
<groupId >org.apache.maven.plugins</groupId >
250
263
<artifactId >maven-plugin-plugin</artifactId >
251
264
<version >${maven.plugin.plugin.version} </version >
252
- <configuration >
253
- <skipErrorNoDescriptorsFound >true</skipErrorNoDescriptorsFound >
254
- </configuration >
255
265
<executions >
256
266
<execution >
257
267
<id >default-descriptor</id >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class Utils {
26
26
private static final String JAR_SNAPSHOT_POSTFIX = "-SNAPSHOT" ;
27
27
private static final String OSGI_SNAPSHOT_POSTFIX = ".SNAPSHOT" ;
28
28
private static final String ECLIPSE_QUALIFIER_POSTFIX = ".qualifier" ;
29
- public static final String TYCHO_VERSION = "1.0 .0" ;
29
+ public static final String TYCHO_VERSION = "1.7 .0" ;
30
30
31
31
public static String getTimeStamp () {
32
32
SimpleDateFormat format = new SimpleDateFormat ("yyyyMMddHHmmss" );
Original file line number Diff line number Diff line change 37
37
<groupId >junit</groupId >
38
38
<artifactId >junit</artifactId >
39
39
<version >3.8.2</version >
40
+ <scope >test</scope >
40
41
</dependency >
41
42
42
43
<dependency >
43
44
<groupId >org.codehaus.groovy</groupId >
44
45
<artifactId >groovy-all-minimal</artifactId >
45
46
<version >1.5.8</version >
47
+ <scope >test</scope >
46
48
</dependency >
47
49
</dependencies >
48
50
</dependencyManagement >
66
68
<artifactId >maven-javadoc-plugin</artifactId >
67
69
<version >3.2.0</version >
68
70
<configuration >
69
- <source >1.7 </source >
71
+ <source >1.8 </source >
70
72
</configuration >
71
73
</plugin >
72
74
</plugins >
You can’t perform that action at this time.
0 commit comments