forked from spring-projects/spring-pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes all non-core components from main branch (spring-projects#390)
* Prunes all non-core components Remove modules: - spring-pulsar-spring-boot-starter - spring-pulsar-reactive-spring-boot-starter - spring-pulsar-spring-boot-autoconfigure - spring-pulsar-spring-cloud-stream-binder - Remove config props plugins - Update docs to point to Spring Boot config props - Move intTest into spring-pulsar and spring-pulsar-reactive * Replace refs from `spring-projects-experimental` to `spring-projects` * Update spring-pulsar-spring-boot-starter to 0.2.1-SNAPSHOT
- Loading branch information
Showing
101 changed files
with
182 additions
and
10,836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 0 additions & 116 deletions
116
buildSrc/src/main/groovy/io/spring/gradle/convention/IntegrationTestPlugin.groovy
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
buildSrc/src/main/groovy/spring-pulsar.integration-test-conventions.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2023-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
configurations { | ||
intTestImplementation { | ||
extendsFrom testImplementation | ||
} | ||
intTestRuntime { | ||
extendsFrom intTestImplementation, testRuntimeClasspath, testRuntimeOnly | ||
} | ||
intTestCompileClasspath { | ||
extendsFrom intTestImplementation | ||
canBeResolved = true | ||
} | ||
intTestRuntimeClasspath { | ||
extendsFrom intTestRuntime | ||
canBeResolved = true | ||
} | ||
} | ||
|
||
sourceSets { | ||
intTest { | ||
compileClasspath += sourceSets.main.output + project.configurations.intTestCompileClasspath | ||
runtimeClasspath += sourceSets.main.output + project.configurations.intTestRuntimeClasspath | ||
} | ||
} | ||
|
||
tasks.register('integrationTest', Test) { | ||
description = 'Runs integration tests.' | ||
group = 'verification' | ||
|
||
testClassesDirs = sourceSets.intTest.output.classesDirs | ||
classpath = sourceSets.intTest.runtimeClasspath | ||
shouldRunAfter test | ||
} | ||
|
||
check.dependsOn integrationTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 0 additions & 59 deletions
59
buildSrc/src/main/java/org/springframework/pulsar/gradle/docs/configprops/Asciidoc.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.