-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: remove release related files from ksql (#8739)
* chore: add changes needed to make 0.23 release work * chore: promote prod images to dockerhub * chore: remove unused comment * chore: remove unused settings file * style: refactor names for clarity * remove files from ksql that should be in release repo * merge conflicts * merge conflicts * pin docker upstream tag * add maven-settings with maven s3 url
- Loading branch information
Showing
4 changed files
with
62 additions
and
312 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 | ||
https://maven.apache.org/xsd/settings-1.0.0.xsd"> | ||
<profiles> | ||
<profile> | ||
<id>release</id> | ||
|
||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
|
||
<repositories> | ||
<repository> | ||
<id>confluent-other</id> | ||
<name>Confluent</name> | ||
<url>https://ksqldb-maven.s3.amazonaws.com/maven/</url> | ||
</repository> | ||
|
||
<!-- needed for HTML API doc generation post-release only --> | ||
<repository> | ||
<id>ksqldb-staging</id> | ||
<name>ksqlDB staging</name> | ||
<url>https://ksqldb-maven.s3.amazonaws.com/maven/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<pluginRepositories> | ||
|
||
<pluginRepository> | ||
<id>confluent-other</id> | ||
<name>Confluent Plugin Repository</name> | ||
<url>https://ksqldb-maven.s3.amazonaws.com/maven/</url> | ||
<layout>default</layout> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
</pluginRepository> | ||
|
||
</pluginRepositories> | ||
</profile> | ||
</profiles> | ||
</settings> |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.