|
25 | 25 | <version>1.0.0</version> |
26 | 26 | <relativePath>..</relativePath> |
27 | 27 | </parent> |
28 | | - <properties> |
29 | | - <objectify.version>5.1.21</objectify.version> |
30 | | - <servlet-api.version>2.5</servlet-api.version> |
31 | | - <gson.version>2.7</gson.version> |
32 | | - <guava.version>20.0</guava.version> |
33 | | - <google-api-client.version>1.22.0</google-api-client.version> |
34 | | - <junit.version>4.12</junit.version> |
35 | | - <mockito.version>1.10.19</mockito.version> |
36 | | - <google-truth.version>0.35</google-truth.version> |
37 | | - <appengine-maven.version>1.3.1</appengine-maven.version> |
38 | | - </properties> |
39 | | - <!-- [START set_versions] --> |
40 | | - <!-- [END set_versions] --> |
41 | | - <dependencies> |
42 | | - <dependency> |
43 | | - <groupId>com.google.appengine</groupId> |
44 | | - <artifactId>appengine-api-1.0-sdk</artifactId> |
45 | | - <version>${appengine.sdk.version}</version> |
46 | | - </dependency> |
47 | | - <dependency> |
48 | | - <groupId>javax.servlet</groupId> |
49 | | - <artifactId>servlet-api</artifactId> |
50 | | - <version>${servlet-api.version}</version> |
51 | | - <type>jar</type> |
52 | | - <scope>provided</scope> |
53 | | - </dependency> |
54 | | - <dependency> |
55 | | - <groupId>com.google.code.gson</groupId> |
56 | | - <artifactId>gson</artifactId> |
57 | | - <version>2.8.1</version> |
58 | | - </dependency> |
59 | | - <dependency> |
60 | | - <groupId>com.googlecode.objectify</groupId> |
61 | | - <artifactId>objectify</artifactId> |
62 | | - <version>${objectify.version}</version> |
63 | | - </dependency> |
64 | | - <dependency> |
65 | | - <groupId>com.google.guava</groupId> |
66 | | - <artifactId>guava</artifactId> |
67 | | - <version>${guava.version}</version> |
68 | | - </dependency> |
69 | | - <dependency> |
70 | | - <groupId>com.google.api-client</groupId> |
71 | | - <artifactId>google-api-client-appengine</artifactId> |
72 | | - <version>${google-api-client.version}</version> |
73 | | - </dependency> |
74 | | - |
75 | | - |
76 | | - <!-- Test Dependencies --> |
77 | | - <dependency> |
78 | | - <groupId>junit</groupId> |
79 | | - <artifactId>junit</artifactId> |
80 | | - <version>${junit.version}</version> |
81 | | - <scope>test</scope> |
82 | | - </dependency> |
83 | | - <dependency> |
84 | | - <groupId>org.mockito</groupId> |
85 | | - <artifactId>mockito-all</artifactId> |
86 | | - <version>${mockito.version}</version> |
87 | | - <scope>test</scope> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>com.google.appengine</groupId> |
91 | | - <artifactId>appengine-testing</artifactId> |
92 | | - <version>${appengine.sdk.version}</version> |
93 | | - <scope>test</scope> |
94 | | - </dependency> |
95 | | - <dependency> |
96 | | - <groupId>com.google.appengine</groupId> |
97 | | - <artifactId>appengine-api-stubs</artifactId> |
98 | | - <version>${appengine.sdk.version}</version> |
99 | | - <scope>test</scope> |
100 | | - </dependency> |
101 | | - <dependency> |
102 | | - <groupId>com.google.appengine</groupId> |
103 | | - <artifactId>appengine-tools-sdk</artifactId> |
104 | | - <version>${appengine.sdk.version}</version> |
105 | | - <scope>test</scope> |
106 | | - </dependency> |
107 | | - <dependency> |
108 | | - <groupId>com.google.truth</groupId> |
109 | | - <artifactId>truth</artifactId> |
110 | | - <version>${google-truth.version}</version> |
111 | | - <scope>test</scope> |
112 | | - </dependency> |
113 | | - </dependencies> |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>com.googlecode.objectify</groupId> |
| 31 | + <artifactId>objectify</artifactId> |
| 32 | + <version>5.1.21</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>com.google.appengine</groupId> |
| 36 | + <artifactId>appengine-api-1.0-sdk</artifactId> |
| 37 | + <version>1.9.56</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>com.google.api-client</groupId> |
| 41 | + <artifactId>google-api-client-appengine</artifactId> |
| 42 | + <version>1.22.0</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>com.google.code.gson</groupId> |
| 46 | + <artifactId>gson</artifactId> |
| 47 | + <version>2.8.1</version> |
| 48 | + </dependency> |
| 49 | + <!-- Test dependences --> |
| 50 | + <dependency> |
| 51 | + <groupId>junit</groupId> |
| 52 | + <artifactId>junit</artifactId> |
| 53 | + <version>4.12</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.mockito</groupId> |
| 57 | + <artifactId>mockito-core</artifactId> |
| 58 | + <version>2.9.0</version> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>com.google.appengine</groupId> |
| 62 | + <artifactId>appengine-api-stubs</artifactId> |
| 63 | + <version>1.9.56</version> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.appengine</groupId> |
| 68 | + <artifactId>appengine-testing</artifactId> |
| 69 | + <version>1.9.56</version> |
| 70 | + </dependency> |
| 71 | + </dependencies> |
114 | 72 | <build> |
115 | 73 | <!-- for hot reload of the web application --> |
116 | 74 | <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes |
|
119 | 77 | <plugin> |
120 | 78 | <groupId>com.google.cloud.tools</groupId> |
121 | 79 | <artifactId>appengine-maven-plugin</artifactId> |
122 | | - <version>${appengine-maven.version}</version> |
| 80 | + <version>1.3.1</version> |
123 | 81 | </plugin> |
124 | 82 | </plugins> |
125 | 83 | </build> |
|
0 commit comments