|
13 | 13 | <artifactId>cxs-graphql-api-features</artifactId>
|
14 | 14 |
|
15 | 15 | <dependencies>
|
| 16 | + |
| 17 | + <dependency> |
| 18 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 19 | + <artifactId>jackson-core</artifactId> |
| 20 | + <version>2.8.4</version> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 24 | + <artifactId>jackson-annotations</artifactId> |
| 25 | + <version>2.8.4</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 29 | + <artifactId>jackson-databind</artifactId> |
| 30 | + <version>2.8.4</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 34 | + <artifactId>jackson-datatype-jdk8</artifactId> |
| 35 | + <version>2.8.4</version> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>com.google.guava</groupId> |
| 39 | + <artifactId>guava</artifactId> |
| 40 | + <version>20.0</version> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>commons-fileupload</groupId> |
| 44 | + <artifactId>commons-fileupload</artifactId> |
| 45 | + <version>1.3.1</version> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>com.graphql-java</groupId> |
| 50 | + <artifactId>graphql-java-servlet</artifactId> |
| 51 | + <version>2.1.0</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>com.graphql-java</groupId> |
| 55 | + <artifactId>graphql-java</artifactId> |
| 56 | + <version>2.2.0</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>com.graphql-java</groupId> |
| 60 | + <artifactId>graphql-java-annotations</artifactId> |
| 61 | + <version>0.13.1</version> |
| 62 | + </dependency> |
| 63 | + |
16 | 64 | <dependency>
|
17 | 65 | <groupId>org.oasis_open.contextserver</groupId>
|
18 | 66 | <artifactId>cxs-graphql-api-impl</artifactId>
|
19 | 67 | <version>1.0-SNAPSHOT</version>
|
20 | 68 | </dependency>
|
| 69 | + |
21 | 70 | </dependencies>
|
22 | 71 |
|
23 | 72 | <build>
|
24 | 73 | <plugins>
|
25 | 74 | <plugin>
|
26 | 75 | <groupId>org.apache.karaf.tooling</groupId>
|
27 | 76 | <artifactId>karaf-maven-plugin</artifactId>
|
28 |
| - <version>${karaf.version}</version> |
| 77 | + <version>4.0.8</version> |
29 | 78 | <extensions>true</extensions>
|
30 | 79 | <configuration>
|
31 |
| - <startLevel>85</startLevel> |
32 |
| - <aggregateFeatures>true</aggregateFeatures> |
| 80 | + <startLevel>80</startLevel> |
| 81 | + <addTransitiveFeatures>true</addTransitiveFeatures> |
| 82 | + <includeTransitiveDependency>true</includeTransitiveDependency> |
33 | 83 | </configuration>
|
34 | 84 | </plugin>
|
35 | 85 | </plugins>
|
|
0 commit comments