Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.13 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>de.hswt.openmasp</groupId>
  5.     <artifactId>parent</artifactId>
  6.     <version>1.0.0-SNAPSHOT</version>
  7.     <packaging>pom</packaging>
  8.  
  9.     <modules>
  10.         <module>../de.hswt.openmasp.main</module>
  11.         <module>../de.hswt.openmasp.ui.core</module>
  12.         <module>../de.hswt.openmasp.ds.core</module>
  13.  
  14.         <module>../de.hswt.openmasp.lib.netcdf</module>
  15.     </modules>
  16.  
  17.     <properties>
  18.         <tycho-version>0.14.1</tycho-version>
  19.     </properties>
  20.  
  21.     <build>
  22.         <plugins>
  23.             <plugin>
  24.                 <groupId>org.eclipse.tycho</groupId>
  25.                 <artifactId>tycho-maven-plugin</artifactId>
  26.                 <version>${tycho-version}</version>
  27.                 <extensions>true</extensions>
  28.             </plugin>
  29.         </plugins>
  30.     </build>
  31.     <repositories>
  32.         <!-- configure p2 repository to resolve against -->
  33.         <repository>
  34.             <id>juno</id>
  35.             <layout>p2</layout>
  36.             <url>http://download.eclipse.org/releases/juno/</url>
  37.         </repository>
  38.     </repositories>
  39.  
  40.  
  41. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement