|
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"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - <groupId>com.github.timeu.gwt-libs.geneviewer</groupId> |
4 |
| - <artifactId>geneviewer-parent</artifactId> |
5 |
| - <version>1.0.0-SNAPSHOT</version> |
6 |
| - <name>GeneViewer (Parent)</name> |
| 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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.github.timeu.gwt-libs.geneviewer</groupId> |
| 5 | + <artifactId>geneviewer-parent</artifactId> |
| 6 | + <version>1.0.0-SNAPSHOT</version> |
| 7 | + <name>GeneViewer (Parent)</name> |
7 | 8 | <packaging>pom</packaging>
|
| 9 | + <description>A GWT based visualization for a Gene track</description> |
| 10 | + <url>https://github.com/timeu/GeneViewer</url> |
| 11 | + <inceptionYear>2011</inceptionYear> |
8 | 12 |
|
9 |
| - <properties> |
10 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
12 |
| - <gwt.version>2.8.0-SNAPSHOT</gwt.version> |
13 |
| - <github.global.server>github</github.global.server> |
14 |
| - <github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository> |
15 |
| - <gwt.module>sample.GeneViewerSample</gwt.module> |
16 |
| - <gwt.shortName>geneviewersample</gwt.shortName> |
17 |
| - <processing.version>1.0.0-SNAPSHOT</processing.version> |
18 |
| - </properties> |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 16 | + <gwt.version>2.8.2</gwt.version> |
| 17 | + <github.global.server>github</github.global.server> |
| 18 | + <github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository> |
| 19 | + <gwt.module>sample.GeneViewerSample</gwt.module> |
| 20 | + <gwt.shortName>geneviewersample</gwt.shortName> |
| 21 | + <processing.version>1.0.0-SNAPSHOT</processing.version> |
| 22 | + </properties> |
| 23 | + <distributionManagement> |
| 24 | + <repository> |
| 25 | + <id>ossrh</id> |
| 26 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 27 | + </repository> |
| 28 | + <snapshotRepository> |
| 29 | + <id>ossrh</id> |
| 30 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 31 | + </snapshotRepository> |
| 32 | + </distributionManagement> |
19 | 33 |
|
20 | 34 | <developers>
|
21 | 35 | <developer>
|
|
29 | 43 | <url>http://www.gmi.oeaw.ac.at</url>
|
30 | 44 | </organization>
|
31 | 45 |
|
| 46 | + <licenses> |
| 47 | + <license> |
| 48 | + <name>MIT License</name> |
| 49 | + <url>http://opensource.org/licenses/MIT</url> |
| 50 | + <distribution>repo</distribution> |
| 51 | + </license> |
| 52 | + </licenses> |
32 | 53 |
|
| 54 | + <prerequisites> |
| 55 | + <maven>3.0.5</maven> |
| 56 | + </prerequisites> |
33 | 57 |
|
34 | 58 | <dependencyManagement>
|
35 | 59 | <dependencies>
|
|
66 | 90 | <dependency>
|
67 | 91 | <groupId>com.google.gwt.gwtmockito</groupId>
|
68 | 92 | <artifactId>gwtmockito</artifactId>
|
69 |
| - <version>1.1.5</version> |
| 93 | + <version>1.1.9</version> |
70 | 94 | <scope>test</scope>
|
71 | 95 | </dependency>
|
72 | 96 | </dependencies>
|
|
84 | 108 | <plugin>
|
85 | 109 | <groupId>org.apache.maven.plugins</groupId>
|
86 | 110 | <artifactId>maven-compiler-plugin</artifactId>
|
87 |
| - <version>3.1</version> |
| 111 | + <version>3.8.1</version> |
88 | 112 | <configuration>
|
89 | 113 | <source>1.8</source>
|
90 | 114 | <target>1.8</target>
|
91 | 115 | </configuration>
|
92 | 116 | </plugin>
|
| 117 | + <plugin> |
| 118 | + <groupId>org.apache.maven.plugins</groupId> |
| 119 | + <artifactId>maven-release-plugin</artifactId> |
| 120 | + <version>3.0.0-M1</version> |
| 121 | + <configuration> |
| 122 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 123 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 124 | + </configuration> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.apache.maven.plugins</groupId> |
| 128 | + <artifactId>maven-site-plugin</artifactId> |
| 129 | + <version>3.7.1</version> |
| 130 | + </plugin> |
| 131 | + <plugin> |
| 132 | + <groupId>org.sonatype.plugins</groupId> |
| 133 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 134 | + <version>1.6.8</version> |
| 135 | + <extensions>true</extensions> |
| 136 | + <configuration> |
| 137 | + <serverId>ossrh</serverId> |
| 138 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 139 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 140 | + </configuration> |
| 141 | + </plugin> |
93 | 142 | <plugin>
|
94 | 143 | <groupId>org.apache.maven.plugins</groupId>
|
95 | 144 | <artifactId>maven-gpg-plugin</artifactId>
|
| 145 | + <version>1.6</version> |
96 | 146 | <executions>
|
97 | 147 | <execution>
|
98 | 148 | <id>sign-artifacts</id>
|
|
106 | 156 | <plugin>
|
107 | 157 | <groupId>net.ltgt.gwt.maven</groupId>
|
108 | 158 | <artifactId>gwt-maven-plugin</artifactId>
|
109 |
| - <version>1.0-rc-4</version> |
| 159 | + <version>1.0.0</version> |
110 | 160 | <extensions>true</extensions>
|
111 | 161 | <configuration>
|
112 | 162 | <devMode>false</devMode>
|
|
140 | 190 | </pluginManagement>
|
141 | 191 | <plugins>
|
142 | 192 | <plugin>
|
143 |
| - <groupId>net.ltgt.gwt.maven</groupId> |
144 |
| - <artifactId>gwt-maven-plugin</artifactId> |
145 |
| - <extensions>true</extensions> |
| 193 | + <groupId>org.apache.maven.plugins</groupId> |
| 194 | + <artifactId>maven-gpg-plugin</artifactId> |
| 195 | + </plugin> |
| 196 | + <plugin> |
| 197 | + <groupId>org.sonatype.plugins</groupId> |
| 198 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
146 | 199 | </plugin>
|
147 | 200 | </plugins>
|
148 | 201 | </build>
|
149 |
| - <repositories> |
150 |
| - <repository> |
151 |
| - <id>google-snapshots</id> |
152 |
| - <url>https://oss.sonatype.org/content/repositories/google-snapshots/</url> |
153 |
| - <releases> |
154 |
| - <enabled>false</enabled> |
155 |
| - </releases> |
156 |
| - <snapshots> |
157 |
| - <enabled>true</enabled> |
158 |
| - </snapshots> |
159 |
| - </repository> |
160 |
| - </repositories> |
161 |
| - |
162 |
| - <distributionManagement> |
163 |
| - <repository> |
164 |
| - <id>repo</id> |
165 |
| - <url>${github.maven.repository}/releases/</url> |
166 |
| - </repository> |
167 |
| - <snapshotRepository> |
168 |
| - <id>snapshot-repo</id> |
169 |
| - <url>${github.maven.repository}/snapshots/</url> |
170 |
| - </snapshotRepository> |
171 |
| - </distributionManagement> |
172 | 202 |
|
173 | 203 | <modules>
|
174 | 204 | <module>geneviewer</module>
|
175 | 205 | <module>geneviewer-sample</module>
|
176 | 206 | </modules>
|
177 |
| - <scm> |
178 |
| - <url>https://timeu@github.com/timeu/geneviewer</url> |
179 |
| - <connection>scm:git@github.com:timeu/geneviewer.git</connection> |
180 |
| - <developerConnection>scm:git@github.com:timeu/geneviewer.git</developerConnection> |
181 |
| - <tag>HEAD</tag> |
182 |
| - </scm> |
| 207 | + <scm> |
| 208 | + <url>https://timeu@github.com/timeu/geneviewer</url> |
| 209 | + <connection>scm:git@github.com:timeu/geneviewer.git</connection> |
| 210 | + <developerConnection>scm:git:ssh://git@github.com/timeu/geneviewer.git</developerConnection> |
| 211 | + </scm> |
183 | 212 | </project>
|
0 commit comments