|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <parent> |
7 | | - <groupId>com.graphql-java</groupId> |
| 7 | + <groupId>com.graphql-java-kickstart</groupId> |
8 | 8 | <artifactId>graphql-java-servlet-osgi-examples</artifactId> |
9 | | - <version>3.0.1</version> |
| 9 | + <version>6.2.1-SNAPSHOT</version> |
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <artifactId>graphql-java-servlet-osgi-examples-karaf-feature</artifactId> |
|
17 | 17 | <dependency> |
18 | 18 | <groupId>com.fasterxml.jackson.core</groupId> |
19 | 19 | <artifactId>jackson-core</artifactId> |
20 | | - <version>2.8.11.1</version> |
| 20 | + <version>2.8.11</version> |
21 | 21 | </dependency> |
22 | 22 | <dependency> |
23 | 23 | <groupId>com.fasterxml.jackson.core</groupId> |
24 | 24 | <artifactId>jackson-annotations</artifactId> |
25 | | - <version>2.8.11.1</version> |
| 25 | + <version>2.8.11</version> |
26 | 26 | </dependency> |
27 | 27 | <dependency> |
28 | 28 | <groupId>com.fasterxml.jackson.core</groupId> |
29 | 29 | <artifactId>jackson-databind</artifactId> |
30 | | - <version>2.8.11.1</version> |
| 30 | + <version>2.8.11</version> |
31 | 31 | </dependency> |
32 | 32 | <dependency> |
33 | 33 | <groupId>com.fasterxml.jackson.datatype</groupId> |
34 | 34 | <artifactId>jackson-datatype-jdk8</artifactId> |
35 | | - <version>2.8.11.1</version> |
| 35 | + <version>2.8.11</version> |
36 | 36 | </dependency> |
37 | 37 | <dependency> |
38 | 38 | <groupId>com.google.guava</groupId> |
|
47 | 47 | <dependency> |
48 | 48 | <groupId>org.antlr</groupId> |
49 | 49 | <artifactId>antlr4-runtime</artifactId> |
50 | | - <version>4.5.1</version> |
| 50 | + <version>4.7.1</version> |
51 | 51 | </dependency> |
52 | 52 |
|
53 | 53 | <dependency> |
54 | | - <groupId>com.graphql-java</groupId> |
| 54 | + <groupId>com.graphql-java-kickstart</groupId> |
55 | 55 | <artifactId>graphql-java-servlet</artifactId> |
56 | 56 | <version>${graphql.java.servlet.version}</version> |
57 | 57 | </dependency> |
|
67 | 67 | </dependency> |
68 | 68 |
|
69 | 69 | <dependency> |
70 | | - <groupId>com.graphql-java</groupId> |
| 70 | + <groupId>com.graphql-java-kickstart</groupId> |
71 | 71 | <artifactId>graphql-java-servlet-osgi-examples-providers</artifactId> |
72 | 72 | <version>${project.version}</version> |
73 | 73 | </dependency> |
74 | | - |
| 74 | + <dependency> |
| 75 | + <groupId>org.slf4j</groupId> |
| 76 | + <artifactId>slf4j-api</artifactId> |
| 77 | + <version>1.7.25</version> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>org.slf4j</groupId> |
| 81 | + <artifactId>slf4j-log4j12</artifactId> |
| 82 | + <version>1.7.25</version> |
| 83 | + </dependency> |
75 | 84 | </dependencies> |
76 | 85 |
|
77 | 86 | <build> |
|
87 | 96 | <includeTransitiveDependency>true</includeTransitiveDependency> |
88 | 97 | </configuration> |
89 | 98 | </plugin> |
90 | | - </plugins> |
| 99 | + |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-install-plugin</artifactId> |
| 103 | + <version>2.5.2</version> |
| 104 | + </plugin> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-deploy-plugin</artifactId> |
| 108 | + <version>2.8.2</version> |
| 109 | + </plugin> |
| 110 | + </plugins> |
91 | 111 |
|
92 | 112 | </build> |
93 | 113 |
|
|
0 commit comments