Skip to content

Commit 4440198

Browse files
committed
pom.xml fixes
1 parent 6e8eaf7 commit 4440198

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

event-queue/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
44
The MIT License
@@ -23,12 +23,13 @@
2323
THE SOFTWARE.
2424
2525
-->
26-
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
27-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
26+
<project xmlns="http://maven.apache.org/POM/4.0.0"
27+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
28+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2829
<modelVersion>4.0.0</modelVersion>
2930
<parent>
30-
<groupId>com.iluwatar</groupId>
3131
<artifactId>java-design-patterns</artifactId>
32+
<groupId>com.iluwatar</groupId>
3233
<version>1.16.0-SNAPSHOT</version>
3334
</parent>
3435
<artifactId>event-queue</artifactId>
@@ -39,4 +40,4 @@
3940
<scope>test</scope>
4041
</dependency>
4142
</dependencies>
42-
</project>
43+
</project>

event-queue/src/main/java/com/iluwatar/event/queue/Audio.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
import java.io.File;
2727
import java.io.IOException;
28-
import java.lang.Thread.State;
2928

3029
import javax.sound.sampled.AudioInputStream;
3130
import javax.sound.sampled.AudioSystem;

pom.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
<module>factory-kit</module>
123123
<module>feature-toggle</module>
124124
<module>value-object</module>
125-
<module>module</module>
125+
<module>module</module>
126126
<module>monad</module>
127127
<module>mute-idiom</module>
128128
<module>mutex</module>
@@ -133,7 +133,7 @@
133133
<module>promise</module>
134134
<module>page-object</module>
135135
<module>event-asynchronous</module>
136-
<module>event-queue</module>
136+
<module>event-queue</module>
137137
<module>queue-load-leveling</module>
138138
<module>object-mother</module>
139139
<module>converter</module>
@@ -302,23 +302,23 @@
302302
</action>
303303
</pluginExecution>
304304
<pluginExecution>
305-
<pluginExecutionFilter>
306-
<groupId>
307-
com.github.markusmo3.urm
308-
</groupId>
309-
<artifactId>
310-
urm-maven-plugin
311-
</artifactId>
312-
<versionRange>
313-
[1.4.1,)
314-
</versionRange>
315-
<goals>
316-
<goal>map</goal>
317-
</goals>
318-
</pluginExecutionFilter>
319-
<action>
320-
<ignore/>
321-
</action>
305+
<pluginExecutionFilter>
306+
<groupId>
307+
com.github.markusmo3.urm
308+
</groupId>
309+
<artifactId>
310+
urm-maven-plugin
311+
</artifactId>
312+
<versionRange>
313+
[1.4.1,)
314+
</versionRange>
315+
<goals>
316+
<goal>map</goal>
317+
</goals>
318+
</pluginExecutionFilter>
319+
<action>
320+
<ignore/>
321+
</action>
322322
</pluginExecution>
323323
</pluginExecutions>
324324
</lifecycleMappingMetadata>

0 commit comments

Comments
 (0)