Skip to content

Commit 0e7d17a

Browse files
committed
Added parent pom.xml file
1 parent 7f141f5 commit 0e7d17a

File tree

1 file changed

+113
-0
lines changed

1 file changed

+113
-0
lines changed

Diff for: pom.xml

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
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+
4+
5+
<groupId>com.github.timeu.dygraphs-gwt</groupId>
6+
<artifactId>dygraphs-gwt-parent</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<packaging>pom</packaging>
9+
10+
<name>Dygraphs-GWT (Parent)</name>
11+
<description>GWT wrapper for Dygraphs</description>
12+
<url>https://github.com/timeu/dygraphs-gwt</url>
13+
14+
<modules>
15+
<module>dygraphs-gwt</module>
16+
<module>dygraphs-gwt-sample</module>
17+
</modules>
18+
19+
<properties>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
</properties>
22+
23+
<licenses>
24+
<license>
25+
<name>The MIT License (MIT)</name>
26+
<url>http://opensource.org/licenses/MIT</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
31+
<scm>
32+
<connection>scm:git:https://timeu@github.com/timeu/dygraphs-gwt.git</connection>
33+
<developerConnection>scm:git:https://timeu@github.com/timeu/dygraphs-gwt.git</developerConnection>
34+
<url>https://timeu@github.com/timeu/dygraphs-gwt</url>
35+
</scm>
36+
37+
<developers>
38+
<developer>
39+
<id>timeu</id>
40+
<name>Ümit Seren</name>
41+
<email>uemit.seren@gmail.com</email>
42+
</developer>
43+
</developers>
44+
45+
<dependencyManagement>
46+
<dependencies>
47+
<dependency>
48+
<groupId>com.google.gwt</groupId>
49+
<artifactId>gwt-dev</artifactId>
50+
<version>2.5.1</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>com.google.gwt</groupId>
54+
<artifactId>gwt-user</artifactId>
55+
<version>2.5.1</version>
56+
</dependency>
57+
58+
<dependency>
59+
<groupId>junit</groupId>
60+
<artifactId>junit</artifactId>
61+
<version>4.11</version>
62+
<scope>test</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.mockito</groupId>
66+
<artifactId>mockito-all</artifactId>
67+
<version>1.9.5</version>
68+
<scope>test</scope>
69+
</dependency>
70+
71+
<dependency>
72+
<groupId>com.github.timeu.dygraphs-gwt</groupId>
73+
<artifactId>dygraphs-gwt</artifactId>
74+
<version>${project.version}</version>
75+
</dependency>
76+
</dependencies>
77+
</dependencyManagement>
78+
79+
<build>
80+
<pluginManagement>
81+
<plugins>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-compiler-plugin</artifactId>
85+
<version>3.1</version>
86+
<configuration>
87+
<source>1.6</source>
88+
<target>1.6</target>
89+
</configuration>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-gpg-plugin</artifactId>
94+
<executions>
95+
<execution>
96+
<id>sign-artifacts</id>
97+
<phase>verify</phase>
98+
<goals>
99+
<goal>sign</goal>
100+
</goals>
101+
</execution>
102+
</executions>
103+
</plugin>
104+
<plugin>
105+
<groupId>net.ltgt.gwt.maven</groupId>
106+
<artifactId>gwt-maven-plugin</artifactId>
107+
<version>1.0-alpha-2</version>
108+
<extensions>true</extensions>
109+
</plugin>
110+
</plugins>
111+
</pluginManagement>
112+
</build>
113+
</project>

0 commit comments

Comments
 (0)