Skip to content

Commit cae1296

Browse files
authored
Merge pull request #78 from tls-attacker/fix/maven-submodule
fix: Allow ModifiableVariable project as submodule
2 parents 3624d5e + 81c4243 commit cae1296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
</dependency>
117117
</dependencies>
118118
<configuration>
119-
<configLocation>checkstyle.xml</configLocation>
119+
<configLocation>${project.basedir}/checkstyle.xml</configLocation>
120120
<violationSeverity>info</violationSeverity>
121121
<failOnViolation>false</failOnViolation>
122122
</configuration>
@@ -126,7 +126,7 @@
126126
<artifactId>formatter-maven-plugin</artifactId>
127127
<version>2.14.0</version>
128128
<configuration>
129-
<configFile>maven-eclipse-codestyle.xml</configFile>
129+
<configFile>${project.basedir}/maven-eclipse-codestyle.xml</configFile>
130130
</configuration>
131131
<executions>
132132
<execution>
@@ -141,7 +141,7 @@
141141
<groupId>com.mycila</groupId>
142142
<artifactId>license-maven-plugin</artifactId>
143143
<configuration>
144-
<header>license_header_plain.txt</header>
144+
<header>${project.basedir}/license_header_plain.txt</header>
145145
<strictCheck>true</strictCheck>
146146
<includes>
147147
<include>src/**/*.java</include>

0 commit comments

Comments
 (0)