Skip to content

Commit 6b74610

Browse files
Autoformatting
1 parent 68c3aee commit 6b74610

File tree

18 files changed

+273
-119
lines changed

18 files changed

+273
-119
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ restoremavencache: &restoremavencache
1111
- maven-repo-v5-
1212
mainenvironment: &mainenvironment
1313
MAVEN_OPTS: -Xmx3200m
14-
BUILD_ARGS: -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
14+
BUILD_ARGS: -B -P!format -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
1515
setup: &setup
1616
docker:
1717
- image: circleci/openjdk:11-jdk-browsers
@@ -118,7 +118,7 @@ jobs:
118118
if [[ -n "$SONARQUBE_TOKEN" ]]; then
119119
echo "Build and Sonar"
120120
export PATH=/home/circleci/apache-maven-3.6.1/bin:$PATH
121-
export SONAR_TARGETS="-Pci,services org.jacoco:jacoco-maven-plugin:prepare-agent@default-prepare-agent surefire:test org.jacoco:jacoco-maven-plugin:report@default-report sonar:sonar"
121+
export SONAR_TARGETS="-Pci,services, org.jacoco:jacoco-maven-plugin:prepare-agent@default-prepare-agent surefire:test org.jacoco:jacoco-maven-plugin:report@default-report sonar:sonar"
122122
export SONAR_ARGS="-Dsonar.host.url=https://sonarcloud.io \
123123
-Dsonar.organization=${CIRCLE_PROJECT_USERNAME} \
124124
-Dsonar.login=${SONARQUBE_TOKEN}

etc/HEADER-JAVA

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Orko - Copyright © 2018-2019 Graham Crockford
2+
3+
<p>This program is free software: you can redistribute it and/or modify it under the terms of the
4+
GNU Affero General Public License as published by the Free Software Foundation, either version 3
5+
of the License, or (at your option) any later version.
6+
7+
<p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8+
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9+
GNU Affero General Public License for more details.
10+
11+
<p>You should have received a copy of the GNU Affero General Public License along with this
12+
program. If not, see <http://www.gnu.org/licenses/>.

orko-app-marketdata/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,22 @@
7979
<build>
8080
<finalName>${project.artifactId}</finalName>
8181
<plugins>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-enforcer-plugin</artifactId>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-failsafe-plugin</artifactId>
89+
</plugin>
90+
<plugin>
91+
<groupId>com.coveo</groupId>
92+
<artifactId>fmt-maven-plugin</artifactId>
93+
</plugin>
94+
<plugin>
95+
<groupId>com.mycila</groupId>
96+
<artifactId>license-maven-plugin</artifactId>
97+
</plugin>
8298
<plugin>
8399
<groupId>org.apache.maven.plugins</groupId>
84100
<artifactId>maven-compiler-plugin</artifactId>

orko-app/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,22 @@
101101
<build>
102102
<finalName>${project.artifactId}</finalName>
103103
<plugins>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-enforcer-plugin</artifactId>
107+
</plugin>
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-failsafe-plugin</artifactId>
111+
</plugin>
112+
<plugin>
113+
<groupId>com.coveo</groupId>
114+
<artifactId>fmt-maven-plugin</artifactId>
115+
</plugin>
116+
<plugin>
117+
<groupId>com.mycila</groupId>
118+
<artifactId>license-maven-plugin</artifactId>
119+
</plugin>
104120
<plugin>
105121
<groupId>org.apache.maven.plugins</groupId>
106122
<artifactId>maven-compiler-plugin</artifactId>

orko-auth/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,22 @@
6868

6969
<build>
7070
<plugins>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-enforcer-plugin</artifactId>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-failsafe-plugin</artifactId>
78+
</plugin>
79+
<plugin>
80+
<groupId>com.coveo</groupId>
81+
<artifactId>fmt-maven-plugin</artifactId>
82+
</plugin>
83+
<plugin>
84+
<groupId>com.mycila</groupId>
85+
<artifactId>license-maven-plugin</artifactId>
86+
</plugin>
7187
<plugin>
7288
<groupId>org.apache.maven.plugins</groupId>
7389
<artifactId>maven-compiler-plugin</artifactId>

orko-base/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,22 @@
9696

9797
<build>
9898
<plugins>
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-enforcer-plugin</artifactId>
102+
</plugin>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-failsafe-plugin</artifactId>
106+
</plugin>
107+
<plugin>
108+
<groupId>com.coveo</groupId>
109+
<artifactId>fmt-maven-plugin</artifactId>
110+
</plugin>
111+
<plugin>
112+
<groupId>com.mycila</groupId>
113+
<artifactId>license-maven-plugin</artifactId>
114+
</plugin>
99115
<plugin>
100116
<groupId>org.apache.maven.plugins</groupId>
101117
<artifactId>maven-compiler-plugin</artifactId>

orko-common/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,22 @@
188188
</resource>
189189
</resources>
190190
<plugins>
191+
<plugin>
192+
<groupId>org.apache.maven.plugins</groupId>
193+
<artifactId>maven-enforcer-plugin</artifactId>
194+
</plugin>
195+
<plugin>
196+
<groupId>org.apache.maven.plugins</groupId>
197+
<artifactId>maven-failsafe-plugin</artifactId>
198+
</plugin>
199+
<plugin>
200+
<groupId>com.coveo</groupId>
201+
<artifactId>fmt-maven-plugin</artifactId>
202+
</plugin>
203+
<plugin>
204+
<groupId>com.mycila</groupId>
205+
<artifactId>license-maven-plugin</artifactId>
206+
</plugin>
191207
<plugin>
192208
<groupId>org.apache.maven.plugins</groupId>
193209
<artifactId>maven-compiler-plugin</artifactId>

orko-db-testsupport/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,22 @@
6464

6565
<build>
6666
<plugins>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-enforcer-plugin</artifactId>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-failsafe-plugin</artifactId>
74+
</plugin>
75+
<plugin>
76+
<groupId>com.coveo</groupId>
77+
<artifactId>fmt-maven-plugin</artifactId>
78+
</plugin>
79+
<plugin>
80+
<groupId>com.mycila</groupId>
81+
<artifactId>license-maven-plugin</artifactId>
82+
</plugin>
6783
<plugin>
6884
<groupId>org.apache.maven.plugins</groupId>
6985
<artifactId>maven-compiler-plugin</artifactId>

orko-end-to-end-testing/pom.xml

+16-19
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,23 @@
2323
</dependencies>
2424

2525
<build>
26-
<pluginManagement>
27-
<plugins>
28-
<plugin>
29-
<groupId>com.mycila</groupId>
30-
<artifactId>license-maven-plugin</artifactId>
31-
<configuration>
32-
<includes>
33-
<include>**/*.js</include>
34-
<include>cypress/**</include>
35-
</includes>
36-
<excludes>
37-
<exclude>node_modules/**</exclude>
38-
<exclude>node/**</exclude>
39-
<exclude>build/**</exclude>
40-
</excludes>
41-
</configuration>
42-
</plugin>
43-
</plugins>
44-
</pluginManagement>
4526
<plugins>
27+
<plugin>
28+
<groupId>com.mycila</groupId>
29+
<artifactId>license-maven-plugin</artifactId>
30+
<configuration>
31+
<header>../etc/HEADER</header>
32+
<includes>
33+
<include>**/*.js</include>
34+
<include>cypress/**</include>
35+
</includes>
36+
<excludes>
37+
<exclude>node_modules/**</exclude>
38+
<exclude>node/**</exclude>
39+
<exclude>build/**</exclude>
40+
</excludes>
41+
</configuration>
42+
</plugin>
4643
<plugin>
4744
<groupId>com.bazaarvoice.maven.plugins</groupId>
4845
<artifactId>process-exec-maven-plugin</artifactId>

orko-integration-testing/pom.xml

+21
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,25 @@
3838
<artifactId>dropwizard-testing</artifactId>
3939
</dependency>
4040
</dependencies>
41+
42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-enforcer-plugin</artifactId>
47+
</plugin>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-failsafe-plugin</artifactId>
51+
</plugin>
52+
<plugin>
53+
<groupId>com.coveo</groupId>
54+
<artifactId>fmt-maven-plugin</artifactId>
55+
</plugin>
56+
<plugin>
57+
<groupId>com.mycila</groupId>
58+
<artifactId>license-maven-plugin</artifactId>
59+
</plugin>
60+
</plugins>
61+
</build>
4162
</project>

orko-job/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,22 @@
6969

7070
<build>
7171
<plugins>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-enforcer-plugin</artifactId>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-failsafe-plugin</artifactId>
79+
</plugin>
80+
<plugin>
81+
<groupId>com.coveo</groupId>
82+
<artifactId>fmt-maven-plugin</artifactId>
83+
</plugin>
84+
<plugin>
85+
<groupId>com.mycila</groupId>
86+
<artifactId>license-maven-plugin</artifactId>
87+
</plugin>
7288
<plugin>
7389
<groupId>org.apache.maven.plugins</groupId>
7490
<artifactId>maven-compiler-plugin</artifactId>

orko-semantic/pom.xml

-13
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,6 @@
1414
<name>Orko Semantic UI Theme</name>
1515

1616
<build>
17-
<pluginManagement>
18-
<plugins>
19-
<plugin>
20-
<groupId>com.mycila</groupId>
21-
<artifactId>license-maven-plugin</artifactId>
22-
<configuration>
23-
<excludes>
24-
<exclude>**</exclude>
25-
</excludes>
26-
</configuration>
27-
</plugin>
28-
</plugins>
29-
</pluginManagement>
3017
<resources>
3118
<resource>
3219
<targetPath>assets</targetPath>

orko-ui/pom.xml

+16-19
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,6 @@
2222
</dependencies>
2323

2424
<build>
25-
<pluginManagement>
26-
<plugins>
27-
<plugin>
28-
<groupId>com.mycila</groupId>
29-
<artifactId>license-maven-plugin</artifactId>
30-
<configuration>
31-
<includes>
32-
<include>**/*.js</include>
33-
<include>src</include>
34-
</includes>
35-
<excludes>
36-
<exclude>node_modules/**</exclude>
37-
<exclude>node/**</exclude>
38-
<exclude>build/**</exclude>
39-
</excludes>
40-
</configuration>
41-
</plugin>
42-
</plugins>
43-
</pluginManagement>
4425
<resources>
4526
<resource>
4627
<targetPath>assets</targetPath>
@@ -52,6 +33,22 @@
5233
</resource>
5334
</resources>
5435
<plugins>
36+
<plugin>
37+
<groupId>com.mycila</groupId>
38+
<artifactId>license-maven-plugin</artifactId>
39+
<configuration>
40+
<header>../etc/HEADER</header>
41+
<includes>
42+
<include>**/*.js</include>
43+
<include>src/**</include>
44+
</includes>
45+
<excludes>
46+
<exclude>node_modules/**</exclude>
47+
<exclude>node/**</exclude>
48+
<exclude>build/**</exclude>
49+
</excludes>
50+
</configuration>
51+
</plugin>
5552
<plugin>
5653
<groupId>com.github.eirslett</groupId>
5754
<artifactId>frontend-maven-plugin</artifactId>

0 commit comments

Comments
 (0)