Skip to content

Commit

Permalink
Merge pull request #5 from SoftwareAG/v3.10
Browse files Browse the repository at this point in the history
V3.10
  • Loading branch information
mgerth authored Nov 7, 2024
2 parents 5587aa1 + 58f59c2 commit d6e2258
Show file tree
Hide file tree
Showing 47 changed files with 82 additions and 311 deletions.
11 changes: 0 additions & 11 deletions .project

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

12 changes: 0 additions & 12 deletions examples/amazon-s3/.classpath

This file was deleted.

13 changes: 13 additions & 0 deletions examples/amazon-s3/.gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
# Ignore Gradle project-specific cache directory
.gradle

# Ignore project-specific settings directory
.settings

# Ignore Visual Studio Code project settings directory
.vscode

# Ignore Eclipse project files
.project
.classpath

# Ignore Gradle build output directory
build

# Ignore Java bin directory
bin

# Ignore Mac Files
.DS_Store
34 changes: 0 additions & 34 deletions examples/amazon-s3/.project

This file was deleted.

13 changes: 0 additions & 13 deletions examples/amazon-s3/.settings/org.eclipse.buildship.core.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions examples/amazon-s3/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

3 changes: 0 additions & 3 deletions examples/amazon-s3/.vscode/settings.json

This file was deleted.

5 changes: 4 additions & 1 deletion examples/amazon-s3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ java {
}
}

base {
archivesName = 'art-' + baseName
}

jar {
archivesBaseName = 'art-' + baseName
version = project.version
manifest {
attributes(
Expand Down
2 changes: 1 addition & 1 deletion examples/amazon-s3/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
baseName=amazon-s3
productName=Amazon S3
vendor=Software AG
copyrightString=(c) 2021-2023 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG. All rights reserved.
copyrightString=(c) 2021-2024 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG. All rights reserved.
version=1.0.0
build.version.major=1
build.version.minor=0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023 Software AG
* Copyright (c) 2021-2024 Software AG
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023 Software AG
* Copyright (c) 2021-2024 Software AG
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
12 changes: 0 additions & 12 deletions examples/console-dump/.classpath

This file was deleted.

13 changes: 13 additions & 0 deletions examples/console-dump/.gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
# Ignore Gradle project-specific cache directory
.gradle

# Ignore project-specific settings directory
.settings

# Ignore Visual Studio Code project settings directory
.vscode

# Ignore Eclipse project files
.project
.classpath

# Ignore Gradle build output directory
build

# Ignore Java bin directory
bin

# Ignore Mac Files
.DS_Store
34 changes: 0 additions & 34 deletions examples/console-dump/.project

This file was deleted.

13 changes: 0 additions & 13 deletions examples/console-dump/.settings/org.eclipse.buildship.core.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions examples/console-dump/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

3 changes: 0 additions & 3 deletions examples/console-dump/.vscode/settings.json

This file was deleted.

5 changes: 4 additions & 1 deletion examples/console-dump/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ java {
}
}

base {
archivesName = 'art-' + baseName
}

jar {
archivesBaseName = 'art-' + baseName
version = project.version
manifest {
attributes(
Expand Down
2 changes: 1 addition & 1 deletion examples/console-dump/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
baseName=console-dump
productName=Console Dump
vendor=Software AG
copyrightString=(c) 2021-2023 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG. All rights reserved.
copyrightString=(c) 2021-2024 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG. All rights reserved.
version=1.0.0
build.version.major=1
build.version.minor=0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023 Software AG
* Copyright (c) 2021-2024 Software AG
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
26 changes: 0 additions & 26 deletions examples/kafka/.classpath

This file was deleted.

13 changes: 13 additions & 0 deletions examples/kafka/.gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
# Ignore Gradle project-specific cache directory
.gradle

# Ignore project-specific settings directory
.settings

# Ignore Visual Studio Code project settings directory
.vscode

# Ignore Eclipse project files
.project
.classpath

# Ignore Gradle build output directory
build

# Ignore Java bin directory
bin

# Ignore Mac Files
.DS_Store
34 changes: 0 additions & 34 deletions examples/kafka/.project

This file was deleted.

13 changes: 0 additions & 13 deletions examples/kafka/.settings/org.eclipse.buildship.core.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions examples/kafka/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

3 changes: 0 additions & 3 deletions examples/kafka/.vscode/settings.json

This file was deleted.

Loading

0 comments on commit d6e2258

Please sign in to comment.