A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/allure-framework/allure-bamboo/commit/ca8e2a8003113e2e2eb03105fac353799f3d582c below:

Mayor Refactor - Compatibility with new Bamboo API and report improve… · allure-framework/allure-bamboo@ca8e2a8 · GitHub

1 1

<?xml version="1.0" encoding="UTF-8"?>

2 2 3 +

<!--suppress VulnerableLibrariesLocal -->

3 4

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

4 5

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

5 6

<modelVersion>4.0.0</modelVersion>

6 7

<groupId>io.qameta.allure</groupId>

7 8

<artifactId>allure-bamboo</artifactId>

8 -

<version>1.13-SNAPSHOT</version>

9 +

<version>2.00-SNAPSHOT</version>

9 10

<name>Allure for Bamboo</name>

10 11

<description>Allure reports right in deployment plans in Bamboo</description>

11 12

<packaging>atlassian-plugin</packaging>

15 16

</organization>

16 17

<properties>

17 18

<amps.version>8.0.3-89c970d65</amps.version>

18 -

<bamboo.version>6.9.1</bamboo.version>

19 +

<bamboo.version>7.1.4</bamboo.version>

19 20

<bamboo.data.version>${bamboo.version}</bamboo.data.version>

20 -

<plugin.testrunner.version>1.2.3</plugin.testrunner.version>

21 -

<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>

21 +

<maven.compiler.source>1.8</maven.compiler.source>

22 +

<maven.compiler.target>1.8</maven.compiler.target>

23 + 24 +

<plugin.testrunner.version>2.0.2</plugin.testrunner.version>

25 +

<atlassian.spring.scanner.version>2.1.7</atlassian.spring.scanner.version>

22 26

<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>

23 -

<slf4j.version>1.7.29</slf4j.version>

27 +

<slf4j.version>1.7.36</slf4j.version>

24 28

<log4j.version>1.2.17</log4j.version>

25 29

<compiler.version>1.8</compiler.version>

26 30

</properties>

33 37

</scm>

34 38 35 39

<dependencies>

40 +

<dependency>

41 +

<groupId>com.fasterxml.jackson.dataformat</groupId>

42 +

<artifactId>jackson-dataformat-yaml</artifactId>

43 +

<version>2.14.0</version>

44 +

</dependency>

45 +

<dependency>

46 +

<groupId>com.fasterxml.jackson.core</groupId>

47 +

<artifactId>jackson-databind</artifactId>

48 +

<version>2.14.0</version>

49 +

</dependency>

36 50

<dependency>

37 51

<groupId>org.buildobjects</groupId>

38 52

<artifactId>jproc</artifactId>

39 -

<version>2.2.1</version>

53 +

<version>2.8.2</version>

40 54

</dependency>

41 55

<dependency>

42 56

<groupId>com.atlassian.bamboo</groupId>

43 57

<artifactId>atlassian-bamboo-web</artifactId>

44 58

<version>${bamboo.version}</version>

45 59

<scope>provided</scope>

60 +

<exclusions>

61 +

<exclusion>

62 +

<groupId>commons-beanutils</groupId>

63 +

<artifactId>commons-beanutils</artifactId>

64 +

</exclusion>

65 +

<exclusion>

66 +

<groupId>org.hamcrest</groupId>

67 +

<artifactId>hamcrest-core</artifactId>

68 +

</exclusion>

69 +

<exclusion>

70 +

<groupId>com.fasterxml.jackson.core</groupId>

71 +

<artifactId>jackson-databind</artifactId>

72 +

</exclusion>

73 +

<exclusion>

74 +

<groupId>junit</groupId>

75 +

<artifactId>junit</artifactId>

76 +

</exclusion>

77 +

<exclusion>

78 +

<groupId>log4j</groupId>

79 +

<artifactId>log4j</artifactId>

80 +

</exclusion>

81 +

<exclusion>

82 +

<groupId>org.slf4j</groupId>

83 +

<artifactId>slf4j-api</artifactId>

84 +

</exclusion>

85 +

<exclusion>

86 +

<groupId>net.bytebuddy</groupId>

87 +

<artifactId>byte-buddy</artifactId>

88 +

</exclusion>

89 +

<exclusion>

90 +

<groupId>org.objenesis</groupId>

91 +

<artifactId>objenesis</artifactId>

92 +

</exclusion>

93 +

<exclusion>

94 +

<groupId>commons-collections</groupId>

95 +

<artifactId>commons-collections</artifactId>

96 +

</exclusion>

97 +

<exclusion>

98 +

<groupId>commons-lang</groupId>

99 +

<artifactId>commons-lang</artifactId>

100 +

</exclusion>

101 +

<exclusion>

102 +

<groupId>commons-logging</groupId>

103 +

<artifactId>commons-logging</artifactId>

104 +

</exclusion>

105 +

<exclusion>

106 +

<groupId>com.fasterxml.jackson.core</groupId>

107 +

<artifactId>jackson-core</artifactId>

108 +

</exclusion>

109 +

<exclusion>

110 +

<groupId>org.yaml</groupId>

111 +

<artifactId>snakeyaml</artifactId>

112 +

</exclusion>

113 +

</exclusions>

46 114

</dependency>

47 115

<dependency>

48 116

<groupId>com.atlassian.templaterenderer</groupId>

53 121

<dependency>

54 122

<groupId>net.lingala.zip4j</groupId>

55 123

<artifactId>zip4j</artifactId>

56 -

<version>1.3.3</version>

124 +

<version>2.11.2</version>

57 125

</dependency>

58 126

<dependency>

59 127

<groupId>org.slf4j</groupId>

94 162

<dependency>

95 163

<groupId>junit</groupId>

96 164

<artifactId>junit</artifactId>

97 -

<version>4.12</version>

165 +

<version>4.13.2</version>

98 166

<scope>test</scope>

167 +

<exclusions>

168 +

<exclusion>

169 +

<groupId>org.hamcrest</groupId>

170 +

<artifactId>hamcrest-core</artifactId>

171 +

</exclusion>

172 +

</exclusions>

99 173

</dependency>

100 174

<dependency>

101 175

<groupId>org.mockito</groupId>

102 176

<artifactId>mockito-core</artifactId>

103 -

<version>3.2.4</version>

177 +

<version>4.11.0</version>

104 178

<scope>test</scope>

105 179

</dependency>

106 180

<dependency>

115 189

<artifactId>atlassian-plugins-osgi-testrunner</artifactId>

116 190

<version>${plugin.testrunner.version}</version>

117 191

<scope>test</scope>

192 +

<exclusions>

193 +

<exclusion>

194 +

<groupId>commons-beanutils</groupId>

195 +

<artifactId>commons-beanutils</artifactId>

196 +

</exclusion>

197 +

<exclusion>

198 +

<groupId>commons-io</groupId>

199 +

<artifactId>commons-io</artifactId>

200 +

</exclusion>

201 +

</exclusions>

118 202

</dependency>

119 203

<dependency>

120 204

<groupId>javax.ws.rs</groupId>

127 211

<artifactId>commons-beanutils</artifactId>

128 212

<version>1.9.4</version>

129 213

</dependency>

130 -

<dependency>

131 -

<groupId>commons-beanutils</groupId>

132 -

<artifactId>commons-beanutils</artifactId>

133 -

<version>1.9.4</version>

134 -

</dependency>

135 214

<dependency>

136 215

<groupId>net.sf.json-lib</groupId>

137 216

<artifactId>json-lib</artifactId>

138 217

<version>2.4</version>

139 218

<classifier>jdk15</classifier>

219 +

<exclusions>

220 +

<exclusion>

221 +

<groupId>commons-beanutils</groupId>

222 +

<artifactId>commons-beanutils</artifactId>

223 +

</exclusion>

224 +

<exclusion>

225 +

<groupId>commons-collections</groupId>

226 +

<artifactId>commons-collections</artifactId>

227 +

</exclusion>

228 +

<exclusion>

229 +

<groupId>commons-logging</groupId>

230 +

<artifactId>commons-logging</artifactId>

231 +

</exclusion>

232 +

</exclusions>

140 233

</dependency>

141 234

</dependencies>

142 235

<build>


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4