Skip to content

Commit 26a1d81

Browse files
committed
1) minor changes to datastore.
2) migrate exception handler from AE gcs client 3) start with gcs client.
1 parent bcb9a59 commit 26a1d81

16 files changed

Lines changed: 1369 additions & 22 deletions

pom.xml

Lines changed: 255 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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">
1+
<?xml version="1.0"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
24
<modelVersion>4.0.0</modelVersion>
35
<groupId>com.ozarov.testing</groupId>
46
<artifactId>git-demo</artifactId>
@@ -7,59 +9,295 @@
79
<dependency>
810
<groupId>com.google.http-client</groupId>
911
<artifactId>google-http-client</artifactId>
10-
<version>1.18.0-rc</version>
12+
<version>1.19.0</version>
13+
<scope>compile</scope>
1114
</dependency>
1215
<dependency>
1316
<groupId>com.google.oauth-client</groupId>
1417
<artifactId>google-oauth-client</artifactId>
15-
<version>1.18.0-rc</version>
18+
<version>1.19.0</version>
19+
<scope>compile</scope>
1620
</dependency>
1721
<dependency>
1822
<groupId>com.google.guava</groupId>
1923
<artifactId>guava</artifactId>
2024
<version>RELEASE</version>
25+
<scope>compile</scope>
2126
</dependency>
2227
<dependency>
2328
<groupId>com.google.apis</groupId>
24-
<artifactId>
25-
google-api-services-datastore-protobuf
26-
</artifactId>
29+
<artifactId>google-api-services-datastore-protobuf</artifactId>
2730
<version>v1beta2-rev1-2.1.0</version>
31+
<scope>compile</scope>
2832
</dependency>
2933
<dependency>
3034
<groupId>com.google.api-client</groupId>
3135
<artifactId>google-api-client-appengine</artifactId>
32-
<version>1.18.0-rc</version>
36+
<version>1.19.0</version>
37+
<scope>compile</scope>
3338
</dependency>
3439
<dependency>
3540
<groupId>junit</groupId>
3641
<artifactId>junit</artifactId>
42+
<version>RELEASE</version>
3743
<scope>test</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>joda-time</groupId>
47+
<artifactId>joda-time</artifactId>
3848
<version>RELEASE</version>
49+
<scope>compile</scope>
3950
</dependency>
4051
<dependency>
41-
<groupId>joda-time</groupId>
42-
<artifactId>joda-time</artifactId>
43-
<version>RELEASE</version>
52+
<groupId>org.json</groupId>
53+
<artifactId>json</artifactId>
54+
<version>20090211</version>
55+
<scope>compile</scope>
4456
</dependency>
4557
<dependency>
46-
<groupId>org.json</groupId>
47-
<artifactId>json</artifactId>
48-
<version>20090211</version>
58+
<groupId>com.google.apis</groupId>
59+
<artifactId>google-api-services-storage</artifactId>
60+
<version>v1-rev23-1.19.0</version>
61+
<scope>compile</scope>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.google.apis</groupId>
65+
<artifactId>google-api-services-datastore</artifactId>
66+
<version>v1beta2-rev23-1.19.0</version>
4967
</dependency>
5068
</dependencies>
69+
<repositories>
70+
<repository>
71+
<snapshots>
72+
<enabled>false</enabled>
73+
</snapshots>
74+
<id>central</id>
75+
<name>Central Repository</name>
76+
<url>http://repo.maven.apache.org/maven2</url>
77+
</repository>
78+
</repositories>
79+
<pluginRepositories>
80+
<pluginRepository>
81+
<releases>
82+
<updatePolicy>never</updatePolicy>
83+
</releases>
84+
<snapshots>
85+
<enabled>false</enabled>
86+
</snapshots>
87+
<id>central</id>
88+
<name>Central Repository</name>
89+
<url>http://repo.maven.apache.org/maven2</url>
90+
</pluginRepository>
91+
</pluginRepositories>
5192
<build>
93+
<sourceDirectory>/usr/local/google/home/ozarov/git/git-demo/src/main/java</sourceDirectory>
94+
<scriptSourceDirectory>/usr/local/google/home/ozarov/git/git-demo/src/main/scripts</scriptSourceDirectory>
95+
<testSourceDirectory>/usr/local/google/home/ozarov/git/git-demo/src/test/java</testSourceDirectory>
96+
<outputDirectory>/usr/local/google/home/ozarov/git/git-demo/target/classes</outputDirectory>
97+
<testOutputDirectory>/usr/local/google/home/ozarov/git/git-demo/target/test-classes</testOutputDirectory>
98+
<resources>
99+
<resource>
100+
<directory>/usr/local/google/home/ozarov/git/git-demo/src/main/resources</directory>
101+
</resource>
102+
</resources>
103+
<testResources>
104+
<testResource>
105+
<directory>/usr/local/google/home/ozarov/git/git-demo/src/test/resources</directory>
106+
</testResource>
107+
</testResources>
108+
<directory>/usr/local/google/home/ozarov/git/git-demo/target</directory>
109+
<finalName>git-demo-0.0.1-SNAPSHOT</finalName>
110+
<pluginManagement>
111+
<plugins>
112+
<plugin>
113+
<artifactId>maven-antrun-plugin</artifactId>
114+
<version>1.3</version>
115+
</plugin>
116+
<plugin>
117+
<artifactId>maven-assembly-plugin</artifactId>
118+
<version>2.2-beta-5</version>
119+
</plugin>
120+
<plugin>
121+
<artifactId>maven-dependency-plugin</artifactId>
122+
<version>2.8</version>
123+
</plugin>
124+
<plugin>
125+
<artifactId>maven-release-plugin</artifactId>
126+
<version>2.3.2</version>
127+
</plugin>
128+
</plugins>
129+
</pluginManagement>
52130
<plugins>
53131
<plugin>
54-
<groupId>org.apache.maven.plugins</groupId>
55132
<artifactId>maven-compiler-plugin</artifactId>
56133
<version>3.1</version>
134+
<executions>
135+
<execution>
136+
<id>default-testCompile</id>
137+
<phase>test-compile</phase>
138+
<goals>
139+
<goal>testCompile</goal>
140+
</goals>
141+
<configuration>
142+
<source>1.7</source>
143+
<target>1.7</target>
144+
<encoding>UTF-8</encoding>
145+
</configuration>
146+
</execution>
147+
<execution>
148+
<id>default-compile</id>
149+
<phase>compile</phase>
150+
<goals>
151+
<goal>compile</goal>
152+
</goals>
153+
<configuration>
154+
<source>1.7</source>
155+
<target>1.7</target>
156+
<encoding>UTF-8</encoding>
157+
</configuration>
158+
</execution>
159+
</executions>
57160
<configuration>
58-
<source>1.7</source>
59-
<target>1.7</target>
60-
<encoding>UTF-8</encoding>
161+
<source>1.7</source>
162+
<target>1.7</target>
163+
<encoding>UTF-8</encoding>
164+
</configuration>
165+
</plugin>
166+
<plugin>
167+
<artifactId>maven-clean-plugin</artifactId>
168+
<version>2.5</version>
169+
<executions>
170+
<execution>
171+
<id>default-clean</id>
172+
<phase>clean</phase>
173+
<goals>
174+
<goal>clean</goal>
175+
</goals>
176+
</execution>
177+
</executions>
178+
</plugin>
179+
<plugin>
180+
<artifactId>maven-install-plugin</artifactId>
181+
<version>2.4</version>
182+
<executions>
183+
<execution>
184+
<id>default-install</id>
185+
<phase>install</phase>
186+
<goals>
187+
<goal>install</goal>
188+
</goals>
189+
</execution>
190+
</executions>
191+
</plugin>
192+
<plugin>
193+
<artifactId>maven-resources-plugin</artifactId>
194+
<version>2.6</version>
195+
<executions>
196+
<execution>
197+
<id>default-resources</id>
198+
<phase>process-resources</phase>
199+
<goals>
200+
<goal>resources</goal>
201+
</goals>
202+
</execution>
203+
<execution>
204+
<id>default-testResources</id>
205+
<phase>process-test-resources</phase>
206+
<goals>
207+
<goal>testResources</goal>
208+
</goals>
209+
</execution>
210+
</executions>
211+
</plugin>
212+
<plugin>
213+
<artifactId>maven-surefire-plugin</artifactId>
214+
<version>2.12.4</version>
215+
<executions>
216+
<execution>
217+
<id>default-test</id>
218+
<phase>test</phase>
219+
<goals>
220+
<goal>test</goal>
221+
</goals>
222+
</execution>
223+
</executions>
224+
</plugin>
225+
<plugin>
226+
<artifactId>maven-jar-plugin</artifactId>
227+
<version>2.4</version>
228+
<executions>
229+
<execution>
230+
<id>default-jar</id>
231+
<phase>package</phase>
232+
<goals>
233+
<goal>jar</goal>
234+
</goals>
235+
</execution>
236+
</executions>
237+
</plugin>
238+
<plugin>
239+
<artifactId>maven-deploy-plugin</artifactId>
240+
<version>2.7</version>
241+
<executions>
242+
<execution>
243+
<id>default-deploy</id>
244+
<phase>deploy</phase>
245+
<goals>
246+
<goal>deploy</goal>
247+
</goals>
248+
</execution>
249+
</executions>
250+
</plugin>
251+
<plugin>
252+
<artifactId>maven-site-plugin</artifactId>
253+
<version>3.3</version>
254+
<executions>
255+
<execution>
256+
<id>default-site</id>
257+
<phase>site</phase>
258+
<goals>
259+
<goal>site</goal>
260+
</goals>
261+
<configuration>
262+
<outputDirectory>/usr/local/google/home/ozarov/git/git-demo/target/site</outputDirectory>
263+
<reportPlugins>
264+
<reportPlugin>
265+
<groupId>org.apache.maven.plugins</groupId>
266+
<artifactId>maven-project-info-reports-plugin</artifactId>
267+
</reportPlugin>
268+
</reportPlugins>
269+
</configuration>
270+
</execution>
271+
<execution>
272+
<id>default-deploy</id>
273+
<phase>site-deploy</phase>
274+
<goals>
275+
<goal>deploy</goal>
276+
</goals>
277+
<configuration>
278+
<outputDirectory>/usr/local/google/home/ozarov/git/git-demo/target/site</outputDirectory>
279+
<reportPlugins>
280+
<reportPlugin>
281+
<groupId>org.apache.maven.plugins</groupId>
282+
<artifactId>maven-project-info-reports-plugin</artifactId>
283+
</reportPlugin>
284+
</reportPlugins>
61285
</configuration>
286+
</execution>
287+
</executions>
288+
<configuration>
289+
<outputDirectory>/usr/local/google/home/ozarov/git/git-demo/target/site</outputDirectory>
290+
<reportPlugins>
291+
<reportPlugin>
292+
<groupId>org.apache.maven.plugins</groupId>
293+
<artifactId>maven-project-info-reports-plugin</artifactId>
294+
</reportPlugin>
295+
</reportPlugins>
296+
</configuration>
62297
</plugin>
63298
</plugins>
64299
</build>
300+
<reporting>
301+
<outputDirectory>/usr/local/google/home/ozarov/git/git-demo/target/site</outputDirectory>
302+
</reporting>
65303
</project>

0 commit comments

Comments
 (0)