From acb7de0a0cc6449e01391ea25d46672aabf3e0e1 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Fri, 23 Jun 2023 09:17:28 +0200 Subject: [PATCH] Remove unused resources --- .../src/main/resources/batch-derby.properties | 17 ---------------- .../src/main/resources/batch-h2.properties | 17 ---------------- .../src/main/resources/batch-hana.properties | 17 ---------------- .../src/main/resources/batch-hsql.properties | 20 ------------------- .../main/resources/batch-mariadb.properties | 17 ---------------- .../src/main/resources/batch-mysql.properties | 17 ---------------- .../main/resources/batch-oracle.properties | 17 ---------------- .../resources/batch-postgresql.properties | 17 ---------------- .../main/resources/batch-sqlserver.properties | 17 ---------------- .../main/resources/batch-sybase.properties | 17 ---------------- 10 files changed, 173 deletions(-) delete mode 100644 spring-batch-core/src/main/resources/batch-derby.properties delete mode 100644 spring-batch-core/src/main/resources/batch-h2.properties delete mode 100644 spring-batch-core/src/main/resources/batch-hana.properties delete mode 100644 spring-batch-core/src/main/resources/batch-hsql.properties delete mode 100644 spring-batch-core/src/main/resources/batch-mariadb.properties delete mode 100644 spring-batch-core/src/main/resources/batch-mysql.properties delete mode 100644 spring-batch-core/src/main/resources/batch-oracle.properties delete mode 100644 spring-batch-core/src/main/resources/batch-postgresql.properties delete mode 100644 spring-batch-core/src/main/resources/batch-sqlserver.properties delete mode 100644 spring-batch-core/src/main/resources/batch-sybase.properties diff --git a/spring-batch-core/src/main/resources/batch-derby.properties b/spring-batch-core/src/main/resources/batch-derby.properties deleted file mode 100644 index 0c44b0f96d..0000000000 --- a/spring-batch-core/src/main/resources/batch-derby.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for Derby: -batch.jdbc.driver=org.apache.derby.jdbc.EmbeddedDriver -batch.jdbc.url=jdbc:derby:derby-home/test;create=true -batch.jdbc.user=app -batch.jdbc.password= -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-derby.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-derby.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-h2.properties b/spring-batch-core/src/main/resources/batch-h2.properties deleted file mode 100644 index aa919bc195..0000000000 --- a/spring-batch-core/src/main/resources/batch-h2.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for H2: -batch.jdbc.driver=org.h2.Driver -batch.jdbc.url=jdbc:h2:file:target/data/h2 -batch.jdbc.user=sa -batch.jdbc.password= -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.H2SequenceMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-h2.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-h2.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-hana.properties b/spring-batch-core/src/main/resources/batch-hana.properties deleted file mode 100644 index 2c1be01e24..0000000000 --- a/spring-batch-core/src/main/resources/batch-hana.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for SAP HANA: -batch.jdbc.driver=com.sap.db.jdbc.Driver -batch.jdbc.url=jdbc:sap://localhost:39015/ -batch.jdbc.user=SPRING_TEST -batch.jdbc.password=Spr1ng_test -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.HanaSequenceMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-hana.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-hana.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-hsql.properties b/spring-batch-core/src/main/resources/batch-hsql.properties deleted file mode 100644 index 9a9641cfc7..0000000000 --- a/spring-batch-core/src/main/resources/batch-hsql.properties +++ /dev/null @@ -1,20 +0,0 @@ -# Placeholders batch.* -# for HSQLDB: -batch.jdbc.driver=org.hsqldb.jdbcDriver -batch.jdbc.url=jdbc:hsqldb:mem:testdb;sql.enforce_strict_size=true;hsqldb.tx=mvcc -# Override and use this one in for a separate server process so you can inspect -# the results (or add it to system properties with -D to override at run time). -# batch.jdbc.url=jdbc:hsqldb:hsql://localhost:9005/samples -batch.jdbc.user=sa -batch.jdbc.password= -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.HsqlMaxValueIncrementer -batch.schema.script=classpath*:/org/springframework/batch/core/schema-hsqldb.sql -batch.drop.script=classpath*:/org/springframework/batch/core/schema-drop-hsqldb.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-mariadb.properties b/spring-batch-core/src/main/resources/batch-mariadb.properties deleted file mode 100644 index 94be3e9118..0000000000 --- a/spring-batch-core/src/main/resources/batch-mariadb.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for MariaDB: -batch.jdbc.driver=org.mariadb.jdbc.Driver -batch.jdbc.url=jdbc:mariadb://localhost/test -batch.jdbc.user=test -batch.jdbc.password=test -batch.database.incrementer.class=org.springframework.batch.item.database.support.MariaDBSequenceMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-mariadb.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-mariadb.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-mysql.properties b/spring-batch-core/src/main/resources/batch-mysql.properties deleted file mode 100644 index e491937446..0000000000 --- a/spring-batch-core/src/main/resources/batch-mysql.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for MySQL: -batch.jdbc.driver=com.mysql.jdbc.Driver -batch.jdbc.url=jdbc:mysql://localhost/test -batch.jdbc.user=test -batch.jdbc.password=test -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-mysql.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-mysql.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-oracle.properties b/spring-batch-core/src/main/resources/batch-oracle.properties deleted file mode 100644 index 25b2147604..0000000000 --- a/spring-batch-core/src/main/resources/batch-oracle.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for Oracle: -batch.jdbc.driver=oracle.jdbc.OracleDriver -batch.jdbc.url=jdbc:oracle:thin:@oracle:1521:xe -batch.jdbc.user=spring -batch.jdbc.password=spring -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.OracleSequenceMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-oracle.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-oracle.sql -batch.jdbc.testWhileIdle=false -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-postgresql.properties b/spring-batch-core/src/main/resources/batch-postgresql.properties deleted file mode 100644 index a882cec072..0000000000 --- a/spring-batch-core/src/main/resources/batch-postgresql.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for Postgres: -batch.jdbc.driver=org.postgresql.Driver -batch.jdbc.url=jdbc:postgresql://localhost/samples -batch.jdbc.user=postgres -batch.jdbc.password=dba -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer -batch.schema.script=classpath:/org/springframework/batch/core/schema-postgresql.sql -batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-postgresql.sql -batch.jdbc.testWhileIdle=false -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-sqlserver.properties b/spring-batch-core/src/main/resources/batch-sqlserver.properties deleted file mode 100644 index 2036b1f757..0000000000 --- a/spring-batch-core/src/main/resources/batch-sqlserver.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for MS SQLServer: -batch.jdbc.driver=net.sourceforge.jtds.jdbc.Driver -batch.jdbc.url=jdbc:jtds:sqlserver://localhost:1433;instance=SQLEXPRESS -batch.jdbc.user=sa -batch.jdbc.password=sa -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.SqlServerMaxValueIncrementer -batch.schema.script=classpath*:/org/springframework/batch/core/schema-sqlserver.sql -batch.drop.script=classpath*:/org/springframework/batch/core/schema-drop-sqlserver.sql -batch.jdbc.testWhileIdle=false -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ - diff --git a/spring-batch-core/src/main/resources/batch-sybase.properties b/spring-batch-core/src/main/resources/batch-sybase.properties deleted file mode 100644 index 4088228463..0000000000 --- a/spring-batch-core/src/main/resources/batch-sybase.properties +++ /dev/null @@ -1,17 +0,0 @@ -# Placeholders batch.* -# for Sybase: -batch.jdbc.driver=net.sourceforge.jtds.jdbc.Driver -batch.jdbc.url=jdbc:jtds:sybase://dbhost:5000;databaseName=test -batch.jdbc.user=spring -batch.jdbc.password=spring -batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.SybaseMaxValueIncrementer -batch.schema.script=classpath*:/org/springframework/batch/core/schema-sybase.sql -batch.drop.script=classpath*:/org/springframework/batch/core/schema-drop-sybase.sql -batch.jdbc.testWhileIdle=true -batch.jdbc.validationQuery= - - -# Non-platform dependent settings that you might like to change -batch.data.source.init=true -batch.table.prefix=BATCH_ -