-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
63 lines (62 loc) · 2.27 KB
/
Copy pathpom.xml
File metadata and controls
63 lines (62 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
<groupId>org.estore</groupId> <!-- should this be changed to org.estore? -->
<artifactId>estore-internal</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<name>estore-internal</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.release>8</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>estore</module>
<module>estore-maven-plugin</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>checkstyle-verify</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Enforce local 4-space indentation settings for Java. -->
<configLocation>checkstyle.xml</configLocation>
<!-- Ignore generated source roots (e.g., target/generated-sources). -->
<excludeGeneratedSources>true</excludeGeneratedSources>
<!-- Ignore committed ANTLR-generated parser sources in estore module. -->
<excludes>org/estore/antlr4/**</excludes>
<failOnViolation>false</failOnViolation>
</configuration>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<!-- Re-run format on all sources; when true, unchanged files can be skipped via index. -->
<upToDateChecking>
<enabled>false</enabled>
</upToDateChecking>
<java>
<googleJavaFormat>
<style>AOSP</style>
</googleJavaFormat>
</java>
</configuration>
</plugin>
</plugins>
</build>
</project>