Skip to content

Commit 65227d6

Browse files
committed
tmp: Adding stuff needed for releasing library
1 parent fb9e982 commit 65227d6

File tree

2,746 files changed

+316622
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,746 files changed

+316622
-0
lines changed

pom.xml

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

0 commit comments

Comments
 (0)