|
5 | 5 | <artifactId>processingjs-gwt-parent</artifactId>
|
6 | 6 | <version>1.0.0-SNAPSHOT</version>
|
7 | 7 | <name>Processingjs-GWT (Parent)</name>
|
| 8 | + <description>A GWT wrapper for the Processing library</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.ProcessingJsGWTSample</gwt.module>
|
17 | 18 | <gwt.shortName>processingjsgwtsample</gwt.shortName>
|
18 | 19 | </properties>
|
19 | 20 |
|
| 21 | + <url>https://github.com/timeu/processing-js-gwt</url> |
| 22 | + <inceptionYear>2018</inceptionYear> |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>MIT License</name> |
| 26 | + <url>http://opensource.org/licenses/MIT</url> |
| 27 | + <distribution>repo</distribution> |
| 28 | + </license> |
| 29 | + </licenses> |
| 30 | + |
| 31 | + <prerequisites> |
| 32 | + <maven>3.0.5</maven> |
| 33 | + </prerequisites> |
| 34 | + |
| 35 | + |
20 | 36 | <distributionManagement>
|
21 | 37 | <repository>
|
22 |
| - <id>repo</id> |
23 |
| - <url>${github.maven.repository}/releases/</url> |
| 38 | + <id>ossrh</id> |
| 39 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
24 | 40 | </repository>
|
25 | 41 | <snapshotRepository>
|
26 |
| - <id>snapshot-repo</id> |
27 |
| - <url>${github.maven.repository}/snapshots/</url> |
| 42 | + <id>ossrh</id> |
| 43 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
28 | 44 | </snapshotRepository>
|
29 | 45 | </distributionManagement>
|
30 | 46 |
|
|
42 | 58 | <scm>
|
43 | 59 | <url>https://timeu@github.com/timeu/processing-js-gwt</url>
|
44 | 60 | <connection>scm:git:https://timeu@github.com/timeu/processing-js-gwt.git</connection>
|
45 |
| - <developerConnection>scm:git:https://timeu@github.com/timeu/processing-js-gwt.git</developerConnection> |
46 |
| - <tag>HEAD</tag> |
| 61 | + <developerConnection>scm:git:ssh://git@github.com/timeu/processing-js-gwt.git</developerConnection> |
47 | 62 | </scm>
|
48 | 63 |
|
49 | 64 | <dependencyManagement>
|
|
81 | 96 | <plugins>
|
82 | 97 | <plugin>
|
83 | 98 | <groupId>org.apache.maven.plugins</groupId>
|
84 |
| - <artifactId>maven-compiler-plugin</artifactId> |
85 |
| - <version>3.1</version> |
| 99 | + <artifactId>maven-release-plugin</artifactId> |
| 100 | + <version>3.0.0-M1</version> |
86 | 101 | <configuration>
|
87 |
| - <source>1.8</source> |
88 |
| - <target>1.8</target> |
| 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> |
89 | 120 | </configuration>
|
90 | 121 | </plugin>
|
91 | 122 | <plugin>
|
92 | 123 | <groupId>org.apache.maven.plugins</groupId>
|
93 | 124 | <artifactId>maven-gpg-plugin</artifactId>
|
| 125 | + <version>1.6</version> |
94 | 126 | <executions>
|
95 | 127 | <execution>
|
96 | 128 | <id>sign-artifacts</id>
|
|
101 | 133 | </execution>
|
102 | 134 | </executions>
|
103 | 135 | </plugin>
|
| 136 | + <plugin> |
| 137 | + <groupId>org.apache.maven.plugins</groupId> |
| 138 | + <artifactId>maven-compiler-plugin</artifactId> |
| 139 | + <version>3.8.1</version> |
| 140 | + <configuration> |
| 141 | + <source>1.8</source> |
| 142 | + <target>1.8</target> |
| 143 | + </configuration> |
| 144 | + </plugin> |
104 | 145 | <plugin>
|
105 | 146 | <groupId>net.ltgt.gwt.maven</groupId>
|
106 | 147 | <artifactId>gwt-maven-plugin</artifactId>
|
107 |
| - <version>1.0-rc-4</version> |
| 148 | + <version>1.0.0</version> |
108 | 149 | <extensions>true</extensions>
|
109 | 150 | <configuration>
|
110 | 151 | <devMode>false</devMode>
|
|
137 | 178 | </pluginManagement>
|
138 | 179 | <plugins>
|
139 | 180 | <plugin>
|
140 |
| - <groupId>net.ltgt.gwt.maven</groupId> |
141 |
| - <artifactId>gwt-maven-plugin</artifactId> |
142 |
| - <extensions>true</extensions> |
143 |
| - </plugin> |
| 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> |
| 187 | + </plugin> |
144 | 188 | </plugins>
|
145 | 189 | </build>
|
146 |
| - <repositories> |
147 |
| - <repository> |
148 |
| - <id>google-snapshots</id> |
149 |
| - <url>https://oss.sonatype.org/content/repositories/google-snapshots/</url> |
150 |
| - <releases> |
151 |
| - <enabled>false</enabled> |
152 |
| - </releases> |
153 |
| - <snapshots> |
154 |
| - <enabled>true</enabled> |
155 |
| - </snapshots> |
156 |
| - </repository> |
157 |
| - </repositories> |
158 |
| - |
159 | 190 | <modules>
|
160 | 191 | <module>processingjs-gwt</module>
|
161 | 192 | <module>processingjs-gwt-sample</module>
|
|
0 commit comments