Skip to content

Commit b67d2a0

Browse files
committed
Use gwt-polymer-elements-1.0.2.0-alpha1.
1 parent 3065636 commit b67d2a0

File tree

3 files changed

+118
-2
lines changed

3 files changed

+118
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ hs_err_pid*
4747
# Maven
4848
src
4949
target
50-
pom.xml
5150

5251
# Eclipse
5352
.settings

demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>com.vaadin.polymer</groupId>
4949
<artifactId>gwt-polymer-elements</artifactId>
50-
<version>1.0-SNAPSHOT</version>
50+
<version>1.0.2.0-alpha1</version>
5151
<scope>provided</scope>
5252
</dependency>
5353
<dependency>

pom.xml

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project>
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.vaadin.polymer</groupId>
5+
<artifactId>gwt-polymer-elements</artifactId>
6+
<version>1.0.2.0-alpha1</version>
7+
<name>Vaadin GWT Polymer Elements</name>
8+
<organization>
9+
<name>Vaadin Ltd</name>
10+
<url>http://vaadin.com</url>
11+
</organization>
12+
<url>http://vaadin.com</url>
13+
<description>
14+
Ready to use Polymer elements in GWT projects.
15+
</description>
16+
<licenses>
17+
<license>
18+
<name>Apache License Version 2.0</name>
19+
<distribution>repo</distribution>
20+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
21+
</license>
22+
</licenses>
23+
<scm>
24+
<connection>scm:https:https://github.com/vaadin/gwt-polymer-elements.git</connection>
25+
<developerConnection>scm:https:https://github.com/vaadin/gwt-polymer-elements.git</developerConnection>
26+
<url>https://github.com/vaadin/gwt-polymer-elements</url>
27+
</scm>
28+
<developers>
29+
<developer>
30+
<id>vaadin</id>
31+
<name>Vaadin Ltd</name>
32+
<organization>Vaadin Ltd</organization>
33+
<organizationUrl>http://vaadin.com/</organizationUrl>
34+
</developer>
35+
</developers>
36+
<properties>
37+
<maven.compiler.source>1.7</maven.compiler.source>
38+
<maven.compiler.target>1.7</maven.compiler.target>
39+
<additionalparam>-Xdoclint:none</additionalparam>
40+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41+
</properties>
42+
43+
<distributionManagement>
44+
<snapshotRepository>
45+
<id>sonatype-nexus-snapshots</id>
46+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
47+
<uniqueVersion>false</uniqueVersion>
48+
</snapshotRepository>
49+
<repository>
50+
<id>ossrh</id>
51+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
52+
</repository>
53+
</distributionManagement>
54+
55+
<dependencies>
56+
<dependency>
57+
<groupId>com.google.gwt</groupId>
58+
<artifactId>gwt-user</artifactId>
59+
<version>2.7.0</version>
60+
<scope>provided</scope>
61+
</dependency>
62+
</dependencies>
63+
64+
<build>
65+
<resources>
66+
<resource>
67+
<directory>src/main/java</directory>
68+
</resource>
69+
<resource>
70+
<directory>src/main/resources</directory>
71+
</resource>
72+
</resources>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-source-plugin</artifactId>
77+
<version>2.2.1</version>
78+
<executions>
79+
<execution>
80+
<id>attach-sources</id>
81+
<goals>
82+
<goal>jar-no-fork</goal>
83+
</goals>
84+
</execution>
85+
</executions>
86+
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-javadoc-plugin</artifactId>
90+
<version>2.9.1</version>
91+
<executions>
92+
<execution>
93+
<id>attach-javadocs</id>
94+
<goals>
95+
<goal>jar</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-gpg-plugin</artifactId>
103+
<version>1.5</version>
104+
<executions>
105+
<execution>
106+
<id>sign-artifacts</id>
107+
<phase>verify</phase>
108+
<goals>
109+
<goal>sign</goal>
110+
</goals>
111+
</execution>
112+
</executions>
113+
</plugin>
114+
</plugins>
115+
</build>
116+
117+
</project>

0 commit comments

Comments
 (0)