The final restructured version for automatic build using maven tycho
[Mograsim.git] / TempMavenTychoSnapshotWorkaround / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <groupId>net.mograsim</groupId>
6         <artifactId>net.mograsim.tycho-download</artifactId>
7         <version>1.0.0</version>
8         <packaging>pom</packaging>
9
10         <!-- THIS IS ONLY TEMPORARY TO RESOLVE AND DOWNLOAD THE TYCHO 1.5.0-SNAPSHOT 
11                 FOR THE MAIN BUILD -->
12
13         <pluginRepositories>
14                 <!-- currently necessary because we are using a SNAPSHOT build of tycho -->
15                 <pluginRepository>
16                         <id>tycho-snapshots</id>
17                         <url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
18                         <releases>
19                                 <enabled>true</enabled>
20                         </releases>
21                         <snapshots>
22                                 <enabled>true</enabled>
23                                 <updatePolicy>always</updatePolicy>
24                         </snapshots>
25                 </pluginRepository>
26         </pluginRepositories>
27
28         <build>
29                 <extensions>
30                         <extension>
31                                 <groupId>org.eclipse.tycho.extras</groupId>
32                                 <artifactId>tycho-pomless</artifactId>
33                                 <version>1.5.0-SNAPSHOT</version>
34                         </extension>
35                 </extensions>
36         </build>
37 </project>