Skip to content

Commit 4b38602

Browse files
committed
Deploy to Artifactory
1 parent ee75d3f commit 4b38602

File tree

2 files changed

+40
-22
lines changed

2 files changed

+40
-22
lines changed

.github/workflows/build-sbm-support-rewrite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Deploy to Artifactory
3636
run: |
3737
jfrog mvnc \
38-
--server-id-deploy repo.spring.io \
38+
--server-id-deploy spring-snapshot \
3939
--repo-deploy-releases release \
4040
--repo-deploy-snapshots snapshot
4141
echo JFROG_CLI_BUILD_NAME=sbm-support-rewrite >> $GITHUB_ENV

sbm-support-rewrite/pom.xml

Lines changed: 39 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>org.springframework.experimental</groupId>
@@ -43,7 +44,8 @@
4344
</developers>
4445

4546
<scm>
46-
<developerConnection>scm:git:https://github.com/spring-projects-experimental/spring-boot-migrator.git</developerConnection>
47+
<developerConnection>scm:git:https://github.com/spring-projects-experimental/spring-boot-migrator.git
48+
</developerConnection>
4749
<connection>scm:git:https://github.com/spring-projects-experimental/spring-boot-migrator</connection>
4850
<url>https://github.com/spring-projects-experimental/spring-boot-migrator/sbm-support-openrewrite</url>
4951
<tag>0.1.0-SNAPSHOT</tag>
@@ -249,14 +251,14 @@
249251
<groupId>org.springframework.boot</groupId>
250252
<artifactId>spring-boot-maven-plugin</artifactId>
251253
<version>${spring-boot.version}</version>
252-
<!-- <executions>-->
253-
<!-- <execution>-->
254-
<!-- <id>repackage</id>-->
255-
<!-- <goals>-->
256-
<!-- <goal>repackage</goal>-->
257-
<!-- </goals>-->
258-
<!-- </execution>-->
259-
<!-- </executions>-->
254+
<!-- <executions>-->
255+
<!-- <execution>-->
256+
<!-- <id>repackage</id>-->
257+
<!-- <goals>-->
258+
<!-- <goal>repackage</goal>-->
259+
<!-- </goals>-->
260+
<!-- </execution>-->
261+
<!-- </executions>-->
260262
<configuration>
261263
<excludes>
262264
<exclude>
@@ -293,7 +295,7 @@
293295
<configuration>
294296
<properties>
295297
<owner>the original author or authors.</owner>
296-
<email />
298+
<email/>
297299
<year>2022</year>
298300
</properties>
299301
<licenseSets>
@@ -347,16 +349,16 @@ limitations under the License.
347349
</licenseSets>
348350
</configuration>
349351
</plugin>
350-
<!-- <plugin>-->
351-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
352-
<!-- <artifactId>maven-surefire-plugin</artifactId>-->
353-
<!-- <version>3.1.2</version>-->
354-
<!-- <configuration>-->
355-
<!-- <excludes>-->
356-
<!-- <exclude />-->
357-
<!-- </excludes>-->
358-
<!-- </configuration>-->
359-
<!-- </plugin>-->
352+
<!-- <plugin>-->
353+
<!-- <groupId>org.apache.maven.plugins</groupId>-->
354+
<!-- <artifactId>maven-surefire-plugin</artifactId>-->
355+
<!-- <version>3.1.2</version>-->
356+
<!-- <configuration>-->
357+
<!-- <excludes>-->
358+
<!-- <exclude />-->
359+
<!-- </excludes>-->
360+
<!-- </configuration>-->
361+
<!-- </plugin>-->
360362

361363
<plugin>
362364
<groupId>org.apache.maven.plugins</groupId>
@@ -435,6 +437,22 @@ limitations under the License.
435437
</plugin>
436438
</plugins>
437439
</build>
440+
<repositories>
441+
<repository>
442+
<id>spring-milestone</id>
443+
<url>https://repo.spring.io/milestone</url>
444+
<snapshots>
445+
<enabled>false</enabled>
446+
</snapshots>
447+
</repository>
448+
<repository>
449+
<id>spring-snapshot</id>
450+
<url>https://repo.spring.io/snapshot</url>
451+
<releases>
452+
<enabled>false</enabled>
453+
</releases>
454+
</repository>
455+
</repositories>
438456
</profile>
439457
</profiles>
440458
</project>

0 commit comments

Comments
 (0)