Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/dco.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
require:
members: false



31 changes: 0 additions & 31 deletions .github/workflows/deploy-and-test-cluster.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/gradle-build.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/maven-build.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/v.yml/v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Manual maven steps for ci
on:
pull_request:
branches:
- main
workflow_dispatch:

jobs:
manual:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
- name: build package
run: mvn package
- name: publish test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: |
**/target/surefire-reports/*.xml
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<relativePath></relativePath>
</parent>

<groupId>org.springframework.samples</groupId>
<artifactId>spring-petclinic</artifactId>
<groupId>s25.s26</groupId>
<artifactId>helloworld</artifactId>
<version>3.5.0-SNAPSHOT</version>

<name>petclinic</name>
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/org/springframework/s25/s26/helloworld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.example;

public class helloworld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}