forked from branflake2267/GWT-Maps-V3-Api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
136 lines (121 loc) · 3.97 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Artifact details that people will use search for this project -->
<groupId>com.google.gwt.maps</groupId>
<artifactId>gwt-maps-api-v3</artifactId>
<version>3.8.0-beta2-SNAPSHOT</version>
<packaging>pom</packaging> <!-- b/c is a parent POM, others are jars/wars -->
<name>GWT Maps API V3</name>
<description>GWT library to access Google Maps javascript API</description>
<url>https://github.com/branflake2267/GWT-Maps-V3-Api/</url>
<inceptionYear>2011</inceptionYear>
<organization>
<name>Gone Vertical LLC</name>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://github.com/branflake2267/GWT-Maps-V3-Api.git</connection>
<developerConnection>scm:git:ssh://github.com/branflake2267/GWT-Maps-V3-Api.git</developerConnection>
<url>https://github.com/branflake2267/GWT-Maps-V3-Api</url>
</scm>
<!-- Dev info -->
<developers>
<developer>
<id>branflake2267</id>
<name>Brandon Donnelson</name>
<email>[email protected]</email>
<organization>Gone Vertical LLC</organization>
<organizationUrl>http://gonevertical.com</organizationUrl>
<roles>
<role>Lead developer</role>
</roles>
<timezone>-8</timezone>
</developer>
<developer>
<id>twistedpair</id>
<name>Joseph Lust</name>
<organization>Lauf Labs LLC</organization>
<email>[email protected]</email>
<organizationUrl>http://www.lustforge.com/</organizationUrl>
<roles>
<role>Developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<properties>
<!-- Goolge maps props -->
<gmapsApiVersion>3.8.0</gmapsApiVersion>
<!-- Java props -->
<javaVersion>1.6</javaVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- GWT props -->
<gwt.version>2.4.0</gwt.version>
<gwt.extraJvmArgs>-Xmx1024m -Xss8m</gwt.extraJvmArgs>
</properties>
<modules>
<module>Apis_Google_Maps</module>
<module>Apis_Maps_Test</module>
<!-- <module>gwt-maps-api-v3-core</module>
<module>gwt-maps-api-v3-demo</module> -->
</modules>
<build>
<pluginManagement>
<plugins>
<!-- Build the core app -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${javaVersion}</source>
<target>${javaVersion}</target>
</configuration>
</plugin>
<!-- Build the GWT -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<!-- Other Google -->
<dependency>
<groupId>com.google.gwt.google-apis</groupId>
<artifactId>gwt-ajaxloader</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
</dependency>
<!-- Just the necessary GWT bits -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope> <!-- don't copy to jar -->
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope> <!-- don't copy to jar -->
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope> <!-- don't copy to jar -->
</dependency>
</dependencies>
</dependencyManagement>
</project>