|
29 | 29 | </pluginRepositories>
|
30 | 30 |
|
31 | 31 | <properties>
|
32 |
| - <bigquery.version>v2-1.3.1-beta</bigquery.version> |
33 |
| - <gae.version>1.5.4</gae.version> |
34 |
| - <google-api-client.version>1.6.0-beta</google-api-client.version> |
| 32 | + <bigquery.version>v2-rev17-1.7.0-beta</bigquery.version> |
| 33 | + <datanucleus.version>1.1.5</datanucleus.version> |
| 34 | + <gae.version>1.6.4</gae.version> |
| 35 | + <google-api-client.version>1.10.1-beta</google-api-client.version> |
35 | 36 | <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
36 | 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
37 | 38 | </properties>
|
|
45 | 46 | <artifactId>maven-compiler-plugin</artifactId>
|
46 | 47 | <version>2.3.2</version>
|
47 | 48 | <configuration>
|
48 |
| - <source>1.5</source> |
49 |
| - <target>1.5</target> |
| 49 | + <source>1.6</source> |
| 50 | + <target>1.6</target> |
50 | 51 | </configuration>
|
51 | 52 | </plugin>
|
52 | 53 |
|
| 54 | + <plugin> |
| 55 | + <groupId>net.kindleit</groupId> |
| 56 | + <artifactId>maven-gae-plugin</artifactId> |
| 57 | + <version>0.9.2</version> |
| 58 | + <dependencies> |
| 59 | + <dependency> |
| 60 | + <groupId>net.kindleit</groupId> |
| 61 | + <artifactId>gae-runtime</artifactId> |
| 62 | + <version>${gae.version}</version> |
| 63 | + <type>pom</type> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | + </plugin> |
| 67 | + <plugin> |
| 68 | + <groupId>org.datanucleus</groupId> |
| 69 | + <artifactId>maven-datanucleus-plugin</artifactId> |
| 70 | + <version>1.1.4</version> |
| 71 | + <configuration> |
| 72 | + <fork>false</fork> |
| 73 | + <log4jConfiguration>${basedir}/src/main/resources/log4j.properties</log4jConfiguration> |
| 74 | + <mappingIncludes>**/server/*.class</mappingIncludes> |
| 75 | + <verbose>true</verbose> |
| 76 | + <enhancerName>ASM</enhancerName> |
| 77 | + <api>JPA</api> |
| 78 | + </configuration> |
| 79 | + <executions> |
| 80 | + <execution> |
| 81 | + <id /> |
| 82 | + <phase>compile</phase> |
| 83 | + <goals> |
| 84 | + <goal>enhance</goal> |
| 85 | + </goals> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + <dependencies> |
| 89 | + <dependency> |
| 90 | + <groupId>org.datanucleus</groupId> |
| 91 | + <artifactId>datanucleus-core</artifactId> |
| 92 | + <version>${datanucleus.version}</version> |
| 93 | + <exclusions> |
| 94 | + <exclusion> |
| 95 | + <groupId>javax.transaction</groupId> |
| 96 | + <artifactId>transaction-api</artifactId> |
| 97 | + </exclusion> |
| 98 | + </exclusions> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.datanucleus</groupId> |
| 102 | + <artifactId>datanucleus-rdbms</artifactId> |
| 103 | + <version>${datanucleus.version}</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.datanucleus</groupId> |
| 107 | + <artifactId>datanucleus-enhancer</artifactId> |
| 108 | + <version>1.1.4</version> |
| 109 | + </dependency> |
| 110 | + <!-- Dependency added as workaround to GWT Issue 5947 for details see http://code.google.com/p/google-web-toolkit/issues/detail?id=5497 --> |
| 111 | + <dependency> |
| 112 | + <groupId>javax.jdo</groupId> |
| 113 | + <artifactId>jdo2-api</artifactId> |
| 114 | + <version>2.3-ec</version> |
| 115 | + <scope>runtime</scope> |
| 116 | + </dependency> |
| 117 | + </dependencies> |
| 118 | + </plugin> |
| 119 | + |
53 | 120 | <plugin>
|
54 | 121 | <groupId>org.apache.maven.plugins</groupId>
|
55 | 122 | <artifactId>maven-war-plugin</artifactId>
|
|
66 | 133 | <webappDirectory>${webappDirectory}</webappDirectory>
|
67 | 134 | </configuration>
|
68 | 135 | </plugin>
|
| 136 | + <plugin> |
| 137 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 138 | + <version>2.6</version> |
| 139 | + <configuration> |
| 140 | + <configLocation>../checkstyle.xml</configLocation> |
| 141 | + <consoleOutput>true</consoleOutput> |
| 142 | + <failOnViolation>false</failOnViolation> |
| 143 | + </configuration> |
| 144 | + <executions> |
| 145 | + <execution> |
| 146 | + <goals> |
| 147 | + <goal>check</goal> |
| 148 | + </goals> |
| 149 | + </execution> |
| 150 | + </executions> |
| 151 | + </plugin> |
| 152 | + <plugin> |
| 153 | + <groupId>org.codehaus.mojo</groupId> |
| 154 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 155 | + <version>2.3.2</version> |
| 156 | + <configuration> |
| 157 | + <failOnError>false</failOnError> |
| 158 | + </configuration> |
| 159 | + <executions> |
| 160 | + <execution> |
| 161 | + <goals> |
| 162 | + <goal>check</goal> |
| 163 | + </goals> |
| 164 | + </execution> |
| 165 | + </executions> |
| 166 | + </plugin> |
69 | 167 | </plugins>
|
| 168 | + <pluginManagement> |
| 169 | + <plugins> |
| 170 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. |
| 171 | + It has no influence on the Maven build itself. --> |
| 172 | + <plugin> |
| 173 | + <groupId>org.eclipse.m2e</groupId> |
| 174 | + <artifactId>lifecycle-mapping</artifactId> |
| 175 | + <version>1.0.0</version> |
| 176 | + <configuration> |
| 177 | + <lifecycleMappingMetadata> |
| 178 | + <pluginExecutions> |
| 179 | + <pluginExecution> |
| 180 | + <pluginExecutionFilter> |
| 181 | + <groupId>org.apache.maven.plugins</groupId> |
| 182 | + <artifactId>maven-war-plugin</artifactId> |
| 183 | + <versionRange>[2.1.1,)</versionRange> |
| 184 | + <goals> |
| 185 | + <goal>exploded</goal> |
| 186 | + </goals> |
| 187 | + </pluginExecutionFilter> |
| 188 | + <action> |
| 189 | + <ignore></ignore> |
| 190 | + </action> |
| 191 | + </pluginExecution> |
| 192 | + <pluginExecution> |
| 193 | + <pluginExecutionFilter> |
| 194 | + <groupId>org.datanucleus</groupId> |
| 195 | + <artifactId>maven-datanucleus-plugin</artifactId> |
| 196 | + <versionRange>[1.1.4,)</versionRange> |
| 197 | + <goals> |
| 198 | + <goal>enhance</goal> |
| 199 | + </goals> |
| 200 | + </pluginExecutionFilter> |
| 201 | + <action> |
| 202 | + <ignore></ignore> |
| 203 | + </action> |
| 204 | + </pluginExecution> |
| 205 | + </pluginExecutions> |
| 206 | + </lifecycleMappingMetadata> |
| 207 | + </configuration> |
| 208 | + </plugin> |
| 209 | + </plugins> |
| 210 | + </pluginManagement> |
70 | 211 | </build>
|
71 | 212 |
|
72 | 213 | <dependencies>
|
|
79 | 220 | <dependency>
|
80 | 221 | <groupId>com.google.apis-samples</groupId>
|
81 | 222 | <artifactId>shared-sample-appengine</artifactId>
|
82 |
| - <version>1.1.0</version> |
| 223 | + <version>1.3.0</version> |
83 | 224 | </dependency>
|
84 | 225 | <dependency>
|
85 | 226 | <groupId>com.google.api-client</groupId>
|
|
88 | 229 | </dependency>
|
89 | 230 | <dependency>
|
90 | 231 | <groupId>com.google.api-client</groupId>
|
91 |
| - <artifactId>google-api-client-extensions</artifactId> |
| 232 | + <artifactId>google-api-client-appengine</artifactId> |
92 | 233 | <version>${google-api-client.version}</version>
|
93 | 234 | </dependency>
|
94 | 235 | <dependency>
|
|
0 commit comments