Skip to content

Commit 9587af0

Browse files
committed
Make package names lowercase
Maven seems to have problems with lowercase package names in Windows. Furthermore, camel case names violate the naming convention. http://maven.apache.org/guides/mini/guide-naming-conventions.html Change-Id: I67c3f6c4286fc4ea17b7767aa11dac594da242bf
1 parent 4af568d commit 9587af0

17 files changed

Lines changed: 5 additions & 5 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>de.tuberlin.dima.schubotz</groupId>
6-
<artifactId>MathMLQueryGenerator</artifactId>
6+
<artifactId>mathmlquerygenerator</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
88

99
<name>MathML Query Generator</name>

src/main/java/de/tuberlin/dima/schubotz/mathMLQueryGenerator/NdLst.java renamed to src/main/java/de/tuberlin/dima/schubotz/mathmlquerygenerator/NdLst.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package de.tuberlin.dima.schubotz.mathMLQueryGenerator;
1+
package de.tuberlin.dima.schubotz.mathmlquerygenerator;
22

33
import org.w3c.dom.Node;
44
import org.w3c.dom.NodeList;

src/main/java/de/tuberlin/dima/schubotz/mathMLQueryGenerator/XQueryGenerator.java renamed to src/main/java/de/tuberlin/dima/schubotz/mathmlquerygenerator/XQueryGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package de.tuberlin.dima.schubotz.mathMLQueryGenerator;
1+
package de.tuberlin.dima.schubotz.mathmlquerygenerator;
22

33

44
import com.google.common.collect.Lists;

src/test/java/de/tuberlin/dima/schubotz/mathMLQueryGenerator/XMLHelper.java renamed to src/test/java/de/tuberlin/dima/schubotz/mathmlquerygenerator/XMLHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package de.tuberlin.dima.schubotz.mathMLQueryGenerator;
1+
package de.tuberlin.dima.schubotz.mathmlquerygenerator;
22

33
import org.w3c.dom.Document;
44
import org.xml.sax.InputSource;

src/test/java/de/tuberlin/dima/schubotz/mathMLQueryGenerator/XQueryGeneratorTest.java renamed to src/test/java/de/tuberlin/dima/schubotz/mathmlquerygenerator/XQueryGeneratorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package de.tuberlin.dima.schubotz.mathMLQueryGenerator;
1+
package de.tuberlin.dima.schubotz.mathmlquerygenerator;
22

33
import junit.framework.TestCase;
44
import org.w3c.dom.Document;

src/test/resources/de/tuberlin/dima/schubotz/MathMLQueryGenerator/cmml/q1.xml renamed to src/test/resources/de/tuberlin/dima/schubotz/mathmlquerygenerator/cmml/q1.xml

File renamed without changes.

src/test/resources/de/tuberlin/dima/schubotz/MathMLQueryGenerator/cmml/q1.xq renamed to src/test/resources/de/tuberlin/dima/schubotz/mathmlquerygenerator/cmml/q1.xq

File renamed without changes.

src/test/resources/de/tuberlin/dima/schubotz/MathMLQueryGenerator/mws/q1.xml renamed to src/test/resources/de/tuberlin/dima/schubotz/mathmlquerygenerator/mws/q1.xml

File renamed without changes.

src/test/resources/de/tuberlin/dima/schubotz/MathMLQueryGenerator/mws/q1.xq renamed to src/test/resources/de/tuberlin/dima/schubotz/mathmlquerygenerator/mws/q1.xq

File renamed without changes.

src/test/resources/de/tuberlin/dima/schubotz/MathMLQueryGenerator/mws/q2.xml renamed to src/test/resources/de/tuberlin/dima/schubotz/mathmlquerygenerator/mws/q2.xml

File renamed without changes.

0 commit comments

Comments
 (0)