Add Source Code Linter Pipeline

This commit is contained in:
Siwat Sirichai 2020-10-29 16:38:56 +07:00
parent 0d0e7140c4
commit d252f6ef50
313 changed files with 36277 additions and 0 deletions

View file

@ -0,0 +1,5 @@
Manifest-Version: 1.0
Built-By: siwat
Build-Jdk: 14.0.2
Created-By: Maven Integration for Eclipse

View file

@ -0,0 +1,7 @@
#Generated by Maven Integration for Eclipse
#Thu Oct 29 15:42:21 ICT 2020
m2e.projectLocation=C\:\\Users\\siwat\\GitHub\\ise-comprog-after-midterm\\waxds-copper
m2e.projectName=waxds-copper
groupId=it.ramecera.ict
artifactId=waxds-copper
version=0.2.0

View file

@ -0,0 +1,39 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>it.ramecera.ict</groupId>
<artifactId>waxds-copper</artifactId>
<version>0.2.0</version>
<url>https://www.ramecera.it</url>
<description>a JPA project for "Hello world" by Screwdriver</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<!-- <exclude>**/*.java</exclude> -->
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="waxds-copper">
<class>it.ramecera.screwdriver.waxds.copper.Actor</class>
<class>it.ramecera.screwdriver.waxds.copper.Author</class>
<class>it.ramecera.screwdriver.waxds.copper.Novel</class>
</persistence-unit>
</persistence>