Commit c7923da1 by Administrator

Merge branch 'develop' into 'master'

Develop

See merge request !1
parents 43aaae1b ad3679f2
Pipeline #24 passed with stage
in 7 seconds
...@@ -7,7 +7,8 @@ mvn --batch-mode verify sonar:sonar \ ...@@ -7,7 +7,8 @@ mvn --batch-mode verify sonar:sonar \
-Dsonar.analysis.mode=preview \ -Dsonar.analysis.mode=preview \
-Dsonar.gitlab.project_id=$CI_PROJECT_ID \ -Dsonar.gitlab.project_id=$CI_PROJECT_ID \
-Dsonar.gitlab.commit_sha=$CI_COMMIT_SHA \ -Dsonar.gitlab.commit_sha=$CI_COMMIT_SHA \
-Dsonar.gitlab.ref_name=$CI_COMMIT_REF_NAME -Dsonar.gitlab.ref_name=$CI_COMMIT_REF_NAME \
clean install
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "sonarqube code-analyze-preview over." echo "sonarqube code-analyze-preview over."
......
...@@ -14,6 +14,10 @@ public class PrintDemoApplication { ...@@ -14,6 +14,10 @@ public class PrintDemoApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(PrintDemoApplication.class, args); SpringApplication.run(PrintDemoApplication.class, args);
asdfasdf
String txt = "Hello world";
System.out.println(txt.substring(15));
int result = 1/0;
int i = 0; int i = 0;
while(true){ while(true){
logger.info("ceshi "+ i++); logger.info("ceshi "+ i++);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment