|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion>
|
3 | 4 | <groupId>com.github.timeu.gwt-libs.gwasviewer</groupId>
|
4 | 5 | <artifactId>gwasviewer-parent</artifactId>
|
5 | 6 | <version>1.0.0-SNAPSHOT</version>
|
6 | 7 | <name>GWASViewer (Parent)</name>
|
7 | 8 | <packaging>pom</packaging>
|
| 9 | + <description>A GWT based visualization for a Manhattan plots</description> |
| 10 | + <url>https://github.com/timeu/GWASViewer</url> |
| 11 | + <inceptionYear>2011</inceptionYear> |
8 | 12 |
|
9 | 13 | <properties>
|
10 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
11 | 15 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
12 |
| - <gwt.version>2.8.0-SNAPSHOT</gwt.version> |
| 16 | + <gwt.version>2.8.2</gwt.version> |
13 | 17 | <github.global.server>github</github.global.server>
|
14 | 18 | <github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
|
15 | 19 | <gwt.module>sample.GWASViewer</gwt.module>
|
|
19 | 23 | <gwt-charts.version>0.9.10</gwt-charts.version>
|
20 | 24 | <ldviewer.version>1.0.0-SNAPSHOT</ldviewer.version>
|
21 | 25 | </properties>
|
| 26 | + <distributionManagement> |
| 27 | + <repository> |
| 28 | + <id>ossrh</id> |
| 29 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 30 | + </repository> |
| 31 | + <snapshotRepository> |
| 32 | + <id>ossrh</id> |
| 33 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 34 | + </snapshotRepository> |
| 35 | + </distributionManagement> |
22 | 36 |
|
23 | 37 | <developers>
|
24 | 38 | <developer>
|
|
32 | 46 | <url>http://www.gmi.oeaw.ac.at</url>
|
33 | 47 | </organization>
|
34 | 48 |
|
| 49 | + <licenses> |
| 50 | + <license> |
| 51 | + <name>MIT License</name> |
| 52 | + <url>http://opensource.org/licenses/MIT</url> |
| 53 | + <distribution>repo</distribution> |
| 54 | + </license> |
| 55 | + </licenses> |
| 56 | + |
35 | 57 |
|
36 | 58 |
|
37 | 59 | <dependencyManagement>
|
|
78 | 100 | <dependency>
|
79 | 101 | <groupId>com.google.gwt.gwtmockito</groupId>
|
80 | 102 | <artifactId>gwtmockito</artifactId>
|
81 |
| - <version>1.1.5</version> |
| 103 | + <version>1.1.9</version> |
82 | 104 | <scope>test</scope>
|
83 | 105 | </dependency>
|
84 | 106 | </dependencies>
|
|
90 | 112 | <plugins>
|
91 | 113 | <plugin>
|
92 | 114 | <groupId>org.apache.maven.plugins</groupId>
|
93 |
| - <artifactId>maven-surefire-plugin</artifactId> |
94 |
| - <version>2.18.1</version> |
| 115 | + <artifactId>maven-release-plugin</artifactId> |
| 116 | + <version>3.0.0-M1</version> |
| 117 | + <configuration> |
| 118 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 119 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 120 | + </configuration> |
| 121 | + </plugin> |
| 122 | + <plugin> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-site-plugin</artifactId> |
| 125 | + <version>3.7.1</version> |
| 126 | + </plugin> |
| 127 | + <plugin> |
| 128 | + <groupId>org.sonatype.plugins</groupId> |
| 129 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 130 | + <version>1.6.8</version> |
| 131 | + <extensions>true</extensions> |
| 132 | + <configuration> |
| 133 | + <serverId>ossrh</serverId> |
| 134 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 135 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 136 | + </configuration> |
95 | 137 | </plugin>
|
96 | 138 | <plugin>
|
97 | 139 | <groupId>org.apache.maven.plugins</groupId>
|
98 | 140 | <artifactId>maven-compiler-plugin</artifactId>
|
99 |
| - <version>3.1</version> |
| 141 | + <version>3.8.1</version> |
100 | 142 | <configuration>
|
101 | 143 | <source>1.8</source>
|
102 | 144 | <target>1.8</target>
|
|
105 | 147 | <plugin>
|
106 | 148 | <groupId>org.apache.maven.plugins</groupId>
|
107 | 149 | <artifactId>maven-gpg-plugin</artifactId>
|
| 150 | + <version>1.6</version> |
108 | 151 | <executions>
|
109 | 152 | <execution>
|
110 | 153 | <id>sign-artifacts</id>
|
|
118 | 161 | <plugin>
|
119 | 162 | <groupId>net.ltgt.gwt.maven</groupId>
|
120 | 163 | <artifactId>gwt-maven-plugin</artifactId>
|
121 |
| - <version>1.0-rc-6</version> |
| 164 | + <version>1.0.0</version> |
122 | 165 | <extensions>true</extensions>
|
123 | 166 | <configuration>
|
124 | 167 | <failOnError>true</failOnError>
|
|
150 | 193 | </pluginManagement>
|
151 | 194 | <plugins>
|
152 | 195 | <plugin>
|
153 |
| - <groupId>net.ltgt.gwt.maven</groupId> |
154 |
| - <artifactId>gwt-maven-plugin</artifactId> |
155 |
| - <extensions>true</extensions> |
| 196 | + <groupId>org.apache.maven.plugins</groupId> |
| 197 | + <artifactId>maven-gpg-plugin</artifactId> |
| 198 | + </plugin> |
| 199 | + <plugin> |
| 200 | + <groupId>org.sonatype.plugins</groupId> |
| 201 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
156 | 202 | </plugin>
|
157 | 203 | </plugins>
|
158 | 204 | </build>
|
159 |
| - <repositories> |
160 |
| - <repository> |
161 |
| - <id>google-snapshots</id> |
162 |
| - <url>https://oss.sonatype.org/content/repositories/google-snapshots/</url> |
163 |
| - <releases> |
164 |
| - <enabled>false</enabled> |
165 |
| - </releases> |
166 |
| - <snapshots> |
167 |
| - <enabled>true</enabled> |
168 |
| - </snapshots> |
169 |
| - </repository> |
170 |
| - </repositories> |
171 |
| - |
172 |
| - <distributionManagement> |
173 |
| - <repository> |
174 |
| - <id>repo</id> |
175 |
| - <url>${github.maven.repository}/releases/</url> |
176 |
| - </repository> |
177 |
| - <snapshotRepository> |
178 |
| - <id>snapshot-repo</id> |
179 |
| - <url>${github.maven.repository}/snapshots/</url> |
180 |
| - </snapshotRepository> |
181 |
| - </distributionManagement> |
182 | 205 |
|
183 | 206 | <modules>
|
184 | 207 | <module>gwasviewer</module>
|
|
187 | 210 | <scm>
|
188 | 211 | <url>https://timeu@github.com/timeu/gwasviewer</url>
|
189 | 212 | <connection>scm:git:git@github.com:timeu/gwasviewer.git</connection>
|
190 |
| - <developerConnection>scm:git@github.com:timeu/gwasviewer.git</developerConnection> |
| 213 | + <developerConnection>scm:git:ssh://git@github.com/timeu/gwasviewer.git</developerConnection> |
191 | 214 | <tag>HEAD</tag>
|
192 | 215 | </scm>
|
193 | 216 | </project>
|
0 commit comments