|
7 | 7 | <artifactId>plugin</artifactId> |
8 | 8 | <version>2.11</version> |
9 | 9 | </parent> |
10 | | - <groupId>org.jenkins-ci.plugins</groupId> |
11 | 10 | <artifactId>gogs-webhook</artifactId> |
12 | 11 | <version>1.0.15-SNAPSHOT</version> |
13 | 12 | <packaging>hpi</packaging> |
|
23 | 22 | <!-- Security --> |
24 | 23 | <owasp.version>3.1.2</owasp.version> |
25 | 24 | <findbugs.failOnError>false</findbugs.failOnError> |
| 25 | + |
| 26 | + <!-- Jackson --> |
| 27 | + <jackson.version>2.9.5</jackson.version> |
26 | 28 | </properties> |
27 | 29 |
|
28 | 30 | <name>Jenkins Gogs plugin</name> |
|
55 | 57 | <dependency> |
56 | 58 | <groupId>org.jenkins-ci.plugins</groupId> |
57 | 59 | <artifactId>git</artifactId> |
58 | | - <version>2.2.5</version> |
| 60 | + <version>3.8.0</version> |
59 | 61 | </dependency> |
60 | 62 | <dependency> |
61 | 63 | <groupId>org.apache.httpcomponents</groupId> |
62 | 64 | <artifactId>httpclient</artifactId> |
63 | | - <version>4.5.1</version> |
| 65 | + <version>4.5.5</version> |
64 | 66 | </dependency> |
65 | 67 | <dependency> |
66 | 68 | <groupId>commons-codec</groupId> |
67 | 69 | <artifactId>commons-codec</artifactId> |
68 | 70 | <version>1.10</version> |
69 | 71 | </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 74 | + <artifactId>jackson-annotations</artifactId> |
| 75 | + <version>${jackson.version}</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 79 | + <artifactId>jackson-databind</artifactId> |
| 80 | + <version>${jackson.version}</version> |
| 81 | + </dependency> |
70 | 82 | <dependency> |
71 | 83 | <groupId>junit</groupId> |
72 | 84 | <artifactId>junit</artifactId> |
|
108 | 120 | <version>6.3</version> |
109 | 121 | <scope>test</scope> |
110 | 122 | </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 125 | + <artifactId>jackson-databind</artifactId> |
| 126 | + <version>2.8.3</version> |
| 127 | + <scope>compile</scope> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 131 | + <artifactId>jackson-databind</artifactId> |
| 132 | + <version>2.8.3</version> |
| 133 | + <scope>compile</scope> |
| 134 | + </dependency> |
111 | 135 | </dependencies> |
112 | 136 |
|
113 | 137 | <build> |
|
0 commit comments