Remove unused files and rename packages

This commit is contained in:
Christophe Tafani-Dereeper 2021-12-10 14:06:19 +01:00
parent 7a1af2424a
commit b3b14a3e5c
No known key found for this signature in database
GPG Key ID: 6F8E56891D02B6F7
5 changed files with 4 additions and 17 deletions

View File

@ -4,7 +4,7 @@ plugins {
id 'java'
}
group = 'com.datadoghq.log4jexample'
group = 'fr.christophetd.log4shell'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

View File

@ -1 +1 @@
rootProject.name = 'vulnerable-app'
rootProject.name = 'log4shell-vulnerable-app'

View File

@ -1,4 +1,4 @@
package com.datadoghq.log4jexample.vulnerableapp;
package fr.christophetd.log4shell.vulnerableapp;
import org.springframework.web.bind.annotation.GetMapping;

View File

@ -1,4 +1,4 @@
package com.datadoghq.log4jexample.vulnerableapp;
package fr.christophetd.log4shell.vulnerableapp;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,13 +0,0 @@
package com.datadoghq.log4jexample.vulnerableapp;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class VulnerableAppApplicationTests {
@Test
void contextLoads() {
}
}