|
| 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>at.gmi.nordborglab.widgets</groupId> |
| 5 | + <artifactId>gwasgeneviewer</artifactId> |
| 6 | + <version>0.3.0-SNAPSHOT</version> |
| 7 | + <name>GWASGeneViewer</name> |
| 8 | + |
| 9 | + <properties> |
| 10 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 11 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 12 | + <gwtVersion>2.4.0</gwtVersion> |
| 13 | + <maven.compiler.source>1.6</maven.compiler.source> |
| 14 | + <maven.compiler.target>1.6</maven.compiler.target> |
| 15 | + <github.maven.repository>file:///srv/uemit.seren/repository/maven-repository/</github.maven.repository> |
| 16 | + </properties> |
| 17 | + |
| 18 | + <repositories> |
| 19 | + <repository> |
| 20 | + <id>gwt-google-apis</id> |
| 21 | + <url>https://maven.alfresco.com/nexus/content/repositories/activiti-thirdparty/</url> |
| 22 | + </repository> |
| 23 | + <repository> |
| 24 | + <id>nordborglab-snapshots</id> |
| 25 | + <url>https://github.com/timeu/maven-repos/raw/master/snapshots/</url> |
| 26 | + </repository> |
| 27 | + </repositories> |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>junit</groupId> |
| 35 | + <artifactId>junit</artifactId> |
| 36 | + <version>3.8.1</version> |
| 37 | + <scope>test</scope> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>com.google.gwt</groupId> |
| 41 | + <artifactId>gwt-user</artifactId> |
| 42 | + <version>${gwtVersion}</version> |
| 43 | + <scope>provided</scope> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>com.google.gwt.google-apis</groupId> |
| 47 | + <artifactId>gwt-visualization</artifactId> |
| 48 | + <version>1.1.2</version> |
| 49 | + <scope>provided</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>at.gmi.nordborglab.widgets</groupId> |
| 53 | + <artifactId>geneviewer</artifactId> |
| 54 | + <version>0.3.0-SNAPSHOT</version> |
| 55 | + <scope>provided</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.danvk</groupId> |
| 59 | + <artifactId>dygraph</artifactId> |
| 60 | + <version>0.6.0-SNAPSHOT</version> |
| 61 | + <scope>provided</scope> |
| 62 | + </dependency> |
| 63 | + </dependencies> |
| 64 | + |
| 65 | + <distributionManagement> |
| 66 | + <repository> |
| 67 | + <id>repo</id> |
| 68 | + <url>${github.maven.repository}/releases/</url> |
| 69 | + </repository> |
| 70 | + <snapshotRepository> |
| 71 | + <id>snapshot-repo</id> |
| 72 | + <url>${github.maven.repository}/snapshots/</url> |
| 73 | + </snapshotRepository> |
| 74 | +</distributionManagement> |
| 75 | + |
| 76 | + |
| 77 | + <organization> |
| 78 | + <name>GMI</name> |
| 79 | + <url>http://www.gmi.oeaw.ac.at</url> |
| 80 | + </organization> |
| 81 | + <build> |
| 82 | + <resources> |
| 83 | + <resource> |
| 84 | + <directory>src/main/java</directory> |
| 85 | + </resource> |
| 86 | + <resource> |
| 87 | + <directory>src/main/resources</directory> |
| 88 | + </resource> |
| 89 | + </resources> |
| 90 | + </build> |
| 91 | + <dependencyManagement> |
| 92 | + <dependencies> |
| 93 | + <dependency><groupId>org.danvk</groupId><artifactId>dygraph</artifactId><version>0.6.0-SNAPSHOT</version></dependency> |
| 94 | +</dependencies> |
| 95 | + </dependencyManagement> |
| 96 | + <scm> |
| 97 | + <url>https://timeu@github.com/timeu/GeneViewer.git</url> |
| 98 | + <connection>https://timeu@github.com/timeu/GeneViewer.git</connection> |
| 99 | + <developerConnection>https://timeu@github.com/timeu/GeneViewer.git</developerConnection> |
| 100 | + </scm> |
| 101 | +</project> |
0 commit comments