Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,6 @@ dotnet_3/em/embedded/rest/ScsDriver/generated-tests/
/jdk_8_maven/em/embedded/thrift/ncs/target/
/jdk_8_maven/em/embedded/thrift/scs/target/
/jdk_8_maven/em/external/thrift/ncs/target/
/jdk_8_maven/em/external/thrift/scs/target/
/jdk_8_maven/em/external/thrift/scs/target/
/jdk_17_maven/cs/web/spring-petclinic/target/
/jdk_17_maven/em/embedded/web/spring-petclinic/target/
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ For simplicity, all schemas are also available as JSON/YML files under the folde
* SCS (not-known license, artificial string examples coming from different sources)


### WEB: backend in Java/Kotlin

* Spring-PetClinic (Apache), [jdk_17_maven/cs/web/spring-petclinic](jdk_17_maven/cs/web/spring-petclinic), from [https://github.com/spring-projects/spring-petclinic]()


### REST: JavaScript/TypeScript

* Disease-sh-API (GPL), [js_npm/rest/disease-sh-api](js_npm/rest/disease-sh-api), from [https://github.com/disease-sh/API](https://github.com/disease-sh/API)
Expand Down
19 changes: 19 additions & 0 deletions jdk_17_maven/cs/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.evomaster</groupId>
<artifactId>evomaster-benchmark-jdk17</artifactId>
<version>1.6.2-SNAPSHOT</version>
</parent>

<artifactId>evomaster-benchmark-jdk17-cs</artifactId>
<packaging>pom</packaging>

<modules>
<module>web</module>
</modules>


</project>
20 changes: 20 additions & 0 deletions jdk_17_maven/cs/web/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.evomaster</groupId>
<artifactId>evomaster-benchmark-jdk17-cs</artifactId>
<version>1.6.2-SNAPSHOT</version>
</parent>

<artifactId>evomaster-benchmark-jdk17-cs-web</artifactId>
<packaging>pom</packaging>


<modules>
<module>spring-petclinic</module>
</modules>


</project>
Loading