Skip to content

Commit 3f2d799

Browse files
authored
bump versions (via #320)
1 parent 86600c8 commit 3f2d799

File tree

388 files changed

+5461
-797
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+5461
-797
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
The following authors have created the source code of "Allure Java"
2-
published and distributed by Dmitry Baev as the owner:
2+
published and distributed by Qameta Software OÜ as the owner:
33

44
* Dmitry Baev <baev@qameta.io>

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2016 Dmitry Baev
189+
Copyright 2019 Qameta Software OÜ
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

allure-assertj/build.gradle.kts

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ val agent by configurations.creating
44

55
dependencies {
66
agent("org.aspectj:aspectjweaver")
7-
compile("org.assertj:assertj-core")
8-
compile(project(":allure-java-commons"))
9-
testCompile("org.junit.jupiter:junit-jupiter-api")
10-
testCompile("org.slf4j:slf4j-simple")
11-
testCompile(project(":allure-java-commons-test"))
12-
testCompile(project(":allure-junit-platform"))
13-
testRuntime("org.junit.jupiter:junit-jupiter-engine")
7+
api(project(":allure-java-commons"))
8+
compileOnly("org.aspectj:aspectjrt")
9+
compileOnly("org.assertj:assertj-core")
10+
testImplementation("org.assertj:assertj-core")
11+
testImplementation("org.junit.jupiter:junit-jupiter-api")
12+
testImplementation("org.slf4j:slf4j-simple")
13+
testImplementation(project(":allure-java-commons-test"))
14+
testImplementation(project(":allure-junit-platform"))
15+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
1416
}
1517

1618
tasks.named<Jar>("jar") {

allure-assertj/src/main/java/io/qameta/allure/assertj/AllureAspectJ.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2019 Qameta Software OÜ
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.qameta.allure.assertj;
217

318
import io.qameta.allure.Allure;

allure-assertj/src/main/resources/META-INF/aop-ajc.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<aspectj>
2+
<weaver options="-warn:none -Xlint:ignore"/>
23
<aspects>
34
<aspect name="io.qameta.allure.assertj.AllureAspectJ"/>
45
</aspects>

allure-assertj/src/test/java/io/qameta/allure/assertj/AllureAspectJTest.java

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2019 Qameta Software OÜ
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.qameta.allure.assertj;
217

318
import io.qameta.allure.AllureLifecycle;
@@ -55,4 +70,4 @@ void shouldCreateStepsForAsserts() {
5570
public void shouldHandleNullableObject() {
5671
assertThat((Object) null).as("Nullable object").isNull();
5772
}
58-
}
73+
}

allure-attachments/build.gradle.kts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ val agent by configurations.creating
44

55
dependencies {
66
agent("org.aspectj:aspectjweaver")
7-
compile("org.freemarker:freemarker")
8-
compile(project(":allure-java-commons"))
9-
testCompile("org.apache.commons:commons-lang3")
10-
testCompile("org.assertj:assertj-core")
11-
testCompile("org.junit.jupiter:junit-jupiter-api")
12-
testCompile("org.mockito:mockito-core")
13-
testCompile("org.slf4j:slf4j-simple")
14-
testCompile(project(":allure-java-commons-test"))
15-
testCompile(project(":allure-junit-platform"))
16-
testRuntime("org.junit.jupiter:junit-jupiter-engine")
7+
api(project(":allure-java-commons"))
8+
implementation("org.freemarker:freemarker")
9+
testImplementation("org.apache.commons:commons-lang3")
10+
testImplementation("org.assertj:assertj-core")
11+
testImplementation("org.junit.jupiter:junit-jupiter-api")
12+
testImplementation("org.mockito:mockito-core")
13+
testImplementation("org.slf4j:slf4j-simple")
14+
testImplementation(project(":allure-java-commons-test"))
15+
testImplementation(project(":allure-junit-platform"))
16+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
1717
}
1818

1919
tasks.named<Jar>("jar") {

allure-attachments/src/main/java/io/qameta/allure/attachment/AttachmentContent.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2019 Qameta Software OÜ
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.qameta.allure.attachment;
217

318
/**

allure-attachments/src/main/java/io/qameta/allure/attachment/AttachmentData.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2019 Qameta Software OÜ
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.qameta.allure.attachment;
217

318
/**

allure-attachments/src/main/java/io/qameta/allure/attachment/AttachmentProcessor.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2019 Qameta Software OÜ
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.qameta.allure.attachment;
217

318
/**

0 commit comments

Comments
 (0)