forked from misto/Ruby-Refactoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
43 lines (39 loc) · 1.37 KB
/
Copy pathpom.xml
File metadata and controls
43 lines (39 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.hsr.ifs.refactoring</groupId>
<artifactId>Ruby-Refactoring</artifactId>
<version>0.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>ch.hsr.ifs.refactoring.core</module>
<module>ch.hsr.ifs.refactoring.dltk</module>
<module>ch.hsr.ifs.refactoring.help</module>
<module>ch.hsr.ifs.refactoring.rdt-tests-feature</module>
<module>ch.hsr.ifs.refactoring.updatesite</module>
</modules>
<repositories>
<repository>
<id>p2.eclipse.juno</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/juno</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>0.11.1</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>0.11.1</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>