|
5 | 5 | <artifactId>ldviewer-parent</artifactId>
|
6 | 6 | <version>1.0.0-SNAPSHOT</version>
|
7 | 7 | <name>LDViewer (Parent)</name>
|
| 8 | + <description>A GWT based visualization for LD</description> |
8 | 9 | <packaging>pom</packaging>
|
9 | 10 |
|
10 | 11 | <properties>
|
11 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
12 | 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
13 |
| - <gwt.version>2.8.0-SNAPSHOT</gwt.version> |
| 14 | + <gwt.version>2.8.2</gwt.version> |
14 | 15 | <github.global.server>github</github.global.server>
|
15 | 16 | <github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
|
16 | 17 | <gwt.module>sample.LDViewerSample</gwt.module>
|
17 | 18 | <gwt.shortName>ldviewersample</gwt.shortName>
|
18 | 19 | <processing.version>1.0.0-SNAPSHOT</processing.version>
|
19 | 20 | </properties>
|
20 | 21 |
|
| 22 | + <url>https://github.com/timeu/ldviewer</url> |
| 23 | + <inceptionYear>2018</inceptionYear> |
| 24 | + <licenses> |
| 25 | + <license> |
| 26 | + <name>MIT License</name> |
| 27 | + <url>http://opensource.org/licenses/MIT</url> |
| 28 | + <distribution>repo</distribution> |
| 29 | + </license> |
| 30 | + </licenses> |
| 31 | + |
| 32 | + <prerequisites> |
| 33 | + <maven>3.0.5</maven> |
| 34 | + </prerequisites> |
| 35 | + |
21 | 36 | <developers>
|
22 | 37 | <developer>
|
23 | 38 | <id>timeu</id>
|
|
33 | 48 |
|
34 | 49 | <distributionManagement>
|
35 | 50 | <repository>
|
36 |
| - <id>repo</id> |
37 |
| - <url>${github.maven.repository}/releases/</url> |
| 51 | + <id>ossrh</id> |
| 52 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
38 | 53 | </repository>
|
39 | 54 | <snapshotRepository>
|
40 |
| - <id>snapshot-repo</id> |
41 |
| - <url>${github.maven.repository}/snapshots/</url> |
| 55 | + <id>ossrh</id> |
| 56 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
42 | 57 | </snapshotRepository>
|
43 | 58 | </distributionManagement>
|
44 |
| - |
45 | 59 | <dependencyManagement>
|
46 | 60 | <dependencies>
|
47 | 61 | <dependency>
|
|
71 | 85 | <dependency>
|
72 | 86 | <groupId>com.google.gwt.gwtmockito</groupId>
|
73 | 87 | <artifactId>gwtmockito</artifactId>
|
74 |
| - <version>1.1.5</version> |
| 88 | + <version>1.1.9</version> |
75 | 89 | <scope>test</scope>
|
76 | 90 | </dependency>
|
77 | 91 | </dependencies>
|
|
82 | 96 | <plugins>
|
83 | 97 | <plugin>
|
84 | 98 | <groupId>org.apache.maven.plugins</groupId>
|
85 |
| - <artifactId>maven-surefire-plugin</artifactId> |
86 |
| - <version>2.18.1</version> |
| 99 | + <artifactId>maven-release-plugin</artifactId> |
| 100 | + <version>3.0.0-M1</version> |
| 101 | + <configuration> |
| 102 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 103 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-site-plugin</artifactId> |
| 109 | + <version>3.7.1</version> |
| 110 | + </plugin> |
| 111 | + <plugin> |
| 112 | + <groupId>org.sonatype.plugins</groupId> |
| 113 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 114 | + <version>1.6.8</version> |
| 115 | + <extensions>true</extensions> |
| 116 | + <configuration> |
| 117 | + <serverId>ossrh</serverId> |
| 118 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 119 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 120 | + </configuration> |
87 | 121 | </plugin>
|
88 | 122 | <plugin>
|
89 | 123 | <groupId>org.apache.maven.plugins</groupId>
|
90 | 124 | <artifactId>maven-compiler-plugin</artifactId>
|
91 |
| - <version>3.1</version> |
| 125 | + <version>3.8.1</version> |
92 | 126 | <configuration>
|
93 | 127 | <source>1.8</source>
|
94 | 128 | <target>1.8</target>
|
|
97 | 131 | <plugin>
|
98 | 132 | <groupId>org.apache.maven.plugins</groupId>
|
99 | 133 | <artifactId>maven-gpg-plugin</artifactId>
|
| 134 | + <version>1.6</version> |
100 | 135 | <executions>
|
101 | 136 | <execution>
|
102 | 137 | <id>sign-artifacts</id>
|
|
110 | 145 | <plugin>
|
111 | 146 | <groupId>net.ltgt.gwt.maven</groupId>
|
112 | 147 | <artifactId>gwt-maven-plugin</artifactId>
|
113 |
| - <version>1.0-rc-4</version> |
| 148 | + <version>1.0.0</version> |
114 | 149 | <extensions>true</extensions>
|
115 | 150 | <configuration>
|
116 | 151 | <devMode>false</devMode>
|
|
143 | 178 | </pluginManagement>
|
144 | 179 | <plugins>
|
145 | 180 | <plugin>
|
146 |
| - <groupId>net.ltgt.gwt.maven</groupId> |
147 |
| - <artifactId>gwt-maven-plugin</artifactId> |
148 |
| - <extensions>true</extensions> |
| 181 | + <groupId>org.apache.maven.plugins</groupId> |
| 182 | + <artifactId>maven-gpg-plugin</artifactId> |
| 183 | + </plugin> |
| 184 | + <plugin> |
| 185 | + <groupId>org.sonatype.plugins</groupId> |
| 186 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
149 | 187 | </plugin>
|
150 | 188 | </plugins>
|
151 | 189 | </build>
|
152 |
| - <repositories> |
153 |
| - <repository> |
154 |
| - <id>google-snapshots</id> |
155 |
| - <url>https://oss.sonatype.org/content/repositories/google-snapshots/</url> |
156 |
| - <releases> |
157 |
| - <enabled>false</enabled> |
158 |
| - </releases> |
159 |
| - <snapshots> |
160 |
| - <enabled>true</enabled> |
161 |
| - </snapshots> |
162 |
| - </repository> |
163 |
| - </repositories> |
164 |
| - |
165 | 190 | <modules>
|
166 | 191 | <module>ldviewer</module>
|
167 | 192 | <module>ldviewer-sample</module>
|
168 | 193 | </modules>
|
169 | 194 | <scm>
|
170 | 195 | <url>https://timeu@github.com/timeu/ldviewer</url>
|
171 | 196 | <connection>scm:git:https://timeu@github.com/timeu/ldviewer.git</connection>
|
172 |
| - <developerConnection>scm:git:https://timeu@github.com/timeu/ldviewer.git</developerConnection> |
173 |
| - <tag>HEAD</tag> |
| 197 | + <developerConnection>scm:git:ssh://git@github.com/timeu/ldviewer.git</developerConnection> |
174 | 198 | </scm>
|
175 | 199 | </project>
|
0 commit comments