Skip to content

Commit 0367697

Browse files
committed
del report files
1 parent 4adcf77 commit 0367697

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+134
-2115
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
HELP.md
2+
/target/*
23
/*/target/*
34
/*/*/target/*
45
!ObjectLogger*.jar
6+
!ObjectLogger*.pom
57
!*/*.mvn/wrapper/maven-wrapper.jar
68
!**/src/main/**
79
!**/src/test/**
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.github.yeecode.objectlogger</groupId>
7+
<artifactId>ObjectLogger</artifactId>
8+
<version>3.0.1</version>
9+
</parent>
10+
<artifactId>ObjectLoggerClient</artifactId>
11+
<packaging>jar</packaging>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.springframework</groupId>
16+
<artifactId>spring-core</artifactId>
17+
</dependency>
18+
<dependency>
19+
<groupId>org.springframework.boot</groupId>
20+
<artifactId>spring-boot-starter</artifactId>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.google.code.gson</groupId>
24+
<artifactId>gson</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.googlecode.java-diff-utils</groupId>
28+
<artifactId>diffutils</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.apache.httpcomponents</groupId>
32+
<artifactId>httpclient</artifactId>
33+
</dependency>
34+
</dependencies>
35+
</project>

demo/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<plugin>
3030
<groupId>org.springframework.boot</groupId>
3131
<artifactId>spring-boot-maven-plugin</artifactId>
32+
<version>2.2.2.RELEASE</version>
3233
<executions>
3334
<execution>
3435
<goals>
7 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.github.yeecode.objectlogger</groupId>
7+
<artifactId>ObjectLogger</artifactId>
8+
<version>3.0.1</version>
9+
</parent>
10+
<artifactId>ObjectLoggerDemo</artifactId>
11+
12+
<dependencies>
13+
<dependency>
14+
<groupId>org.springframework.boot</groupId>
15+
<artifactId>spring-boot-starter-web</artifactId>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.springframework.boot</groupId>
19+
<artifactId>spring-boot-starter-test</artifactId>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.github.yeecode.objectlogger</groupId>
23+
<artifactId>ObjectLoggerClient</artifactId>
24+
</dependency>
25+
</dependencies>
26+
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-maven-plugin</artifactId>
32+
<version>2.2.2.RELEASE</version>
33+
<executions>
34+
<execution>
35+
<goals>
36+
<goal>repackage</goal>
37+
</goals>
38+
</execution>
39+
</executions>
40+
</plugin>
41+
</plugins>
42+
</build>
43+
</project>

pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,6 @@
136136
<artifactId>maven-site-plugin</artifactId>
137137
<version>3.7.1</version>
138138
</plugin>
139-
<plugin>
140-
<groupId>org.apache.maven.plugins</groupId>
141-
<artifactId>maven-project-info-reports-plugin</artifactId>
142-
<version>3.0.0</version>
143-
</plugin>
144139
<!-- Javadoc -->
145140
<plugin>
146141
<groupId>org.apache.maven.plugins</groupId>

server/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<plugin>
3939
<groupId>org.springframework.boot</groupId>
4040
<artifactId>spring-boot-maven-plugin</artifactId>
41+
<version>2.2.2.RELEASE</version>
4142
<executions>
4243
<execution>
4344
<goals>
Binary file not shown.
Binary file not shown.
18 Bytes
Binary file not shown.
+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.github.yeecode.objectlogger</groupId>
7+
<artifactId>ObjectLogger</artifactId>
8+
<version>3.0.1</version>
9+
</parent>
10+
<artifactId>ObjectLoggerServer</artifactId>
11+
<packaging>jar</packaging>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.springframework.boot</groupId>
16+
<artifactId>spring-boot-starter-web</artifactId>
17+
</dependency>
18+
<dependency>
19+
<groupId>org.mybatis.spring.boot</groupId>
20+
<artifactId>mybatis-spring-boot-starter</artifactId>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-test</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>mysql</groupId>
28+
<artifactId>mysql-connector-java</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.github.yeecode.objectlogger</groupId>
32+
<artifactId>ObjectLoggerClient</artifactId>
33+
</dependency>
34+
</dependencies>
35+
36+
<build>
37+
<plugins>
38+
<plugin>
39+
<groupId>org.springframework.boot</groupId>
40+
<artifactId>spring-boot-maven-plugin</artifactId>
41+
<version>2.2.2.RELEASE</version>
42+
<executions>
43+
<execution>
44+
<goals>
45+
<goal>repackage</goal>
46+
</goals>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
</plugins>
51+
</build>
52+
</project>

target/ObjectLogger-3.0.1.pom

-5
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,6 @@
136136
<artifactId>maven-site-plugin</artifactId>
137137
<version>3.7.1</version>
138138
</plugin>
139-
<plugin>
140-
<groupId>org.apache.maven.plugins</groupId>
141-
<artifactId>maven-project-info-reports-plugin</artifactId>
142-
<version>3.0.0</version>
143-
</plugin>
144139
<!-- Javadoc -->
145140
<plugin>
146141
<groupId>org.apache.maven.plugins</groupId>

target/ObjectLogger-3.0.1.pom.asc

-11
This file was deleted.

target/ObjectLogger-3.0.1.pom.asc.asc

-11
This file was deleted.

target/ObjectLogger-3.0.1.pom.asc.asc.asc

-11
This file was deleted.

target/site/css/maven-base.css

-168
This file was deleted.

0 commit comments

Comments
 (0)