Skip to content

Commit 500c9c8

Browse files
committed
repackage
1 parent 5f498c9 commit 500c9c8

File tree

8 files changed

+23
-11
lines changed

8 files changed

+23
-11
lines changed

pom.xml

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>de.tbosch.spring.batch</groupId>
4+
<groupId>de.codecentric.batch</groupId>
55
<artifactId>spring-batch-admin-spring-boot</artifactId>
6-
<version>1.0.0-SNAPSHOT</version>
6+
<version>1.0.0-RELEASE</version>
77
<licenses>
88
<license>
99
<name>Apache License, Version 2.0</name>
@@ -82,7 +82,7 @@
8282
<artifactId>hsqldb</artifactId>
8383
<version>2.3.2</version>
8484
</dependency>
85-
85+
8686
<!-- Test -->
8787
<dependency>
8888
<groupId>junit</groupId>
@@ -112,6 +112,18 @@
112112
<encoding>utf8</encoding>
113113
</configuration>
114114
</plugin>
115+
<plugin>
116+
<groupId>org.springframework.boot</groupId>
117+
<artifactId>spring-boot-maven-plugin</artifactId>
118+
<version>${spring-boot.version}</version>
119+
<executions>
120+
<execution>
121+
<goals>
122+
<goal>repackage</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
115127
</plugins>
116128
</build>
117129
</project>

src/main/java/de/tbosch/spring/batch/SpringBatchAdmin.java src/main/java/de/codecentric/batch/SpringBatchAdmin.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch;
16+
package de.codecentric.batch;
1717

1818
import org.springframework.boot.SpringApplication;
1919
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
@@ -25,7 +25,7 @@
2525
import org.springframework.context.annotation.Configuration;
2626
import org.springframework.context.annotation.Import;
2727

28-
import de.tbosch.spring.batch.config.MainConfiguration;
28+
import de.codecentric.batch.config.MainConfiguration;
2929

3030
@Configuration
3131
@EnableAutoConfiguration(exclude = { BatchAutoConfiguration.class, DataSourceAutoConfiguration.class,

src/main/java/de/tbosch/spring/batch/config/MainConfiguration.java src/main/java/de/codecentric/batch/config/MainConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch.config;
16+
package de.codecentric.batch.config;
1717

1818
import org.springframework.context.annotation.Configuration;
1919
import org.springframework.context.annotation.Import;

src/main/java/de/tbosch/spring/batch/config/ServletConfiguration.java src/main/java/de/codecentric/batch/config/ServletConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch.config;
16+
package de.codecentric.batch.config;
1717

1818
import org.springframework.context.annotation.Configuration;
1919
import org.springframework.context.annotation.ImportResource;

src/main/java/de/tbosch/spring/batch/config/WebappConfiguration.java src/main/java/de/codecentric/batch/config/WebappConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch.config;
16+
package de.codecentric.batch.config;
1717

1818
import org.springframework.context.annotation.Configuration;
1919
import org.springframework.context.annotation.ImportResource;

src/test/java/de/tbosch/spring/batch/BatchTest.java src/test/java/de/codecentric/batch/BatchTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch;
16+
package de.codecentric.batch;
1717

1818
import org.junit.Test;
1919
import org.junit.runner.RunWith;

src/test/java/de/tbosch/spring/batch/TestBatchConfiguration.java src/test/java/de/codecentric/batch/TestBatchConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch;
16+
package de.codecentric.batch;
1717

1818
import java.util.Arrays;
1919
import java.util.List;

src/test/java/de/tbosch/spring/batch/TestBatchConfigurer.java src/test/java/de/codecentric/batch/TestBatchConfigurer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package de.tbosch.spring.batch;
16+
package de.codecentric.batch;
1717

1818
import org.springframework.batch.core.configuration.annotation.DefaultBatchConfigurer;
1919
import org.springframework.context.annotation.Configuration;

0 commit comments

Comments
 (0)