Skip to content

Commit f6619a8

Browse files
committed
Rename package and groupId
1 parent fea74e1 commit f6619a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+47
-47
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.andrebreves.java</groupId>
6+
<groupId>com.andrebreves</groupId>
77
<artifactId>java-tuple</artifactId>
88
<version>1.1.0-SNAPSHOT</version>
99
<packaging>jar</packaging>
@@ -94,7 +94,7 @@
9494
</goals>
9595
<configuration>
9696
<additionalClasspathElements>target/tuple-generator</additionalClasspathElements>
97-
<mainClass>com.andrebreves.java.tuple.SourceGenerator</mainClass>
97+
<mainClass>com.andrebreves.tuple.SourceGenerator</mainClass>
9898
<arguments>code,${tuple.degrees},src/main/java</arguments>
9999
<addOutputToClasspath>false</addOutputToClasspath>
100100
</configuration>
@@ -107,7 +107,7 @@
107107
</goals>
108108
<configuration>
109109
<additionalClasspathElements>target/tuple-generator</additionalClasspathElements>
110-
<mainClass>com.andrebreves.java.tuple.SourceGenerator</mainClass>
110+
<mainClass>com.andrebreves.tuple.SourceGenerator</mainClass>
111111
<arguments>test,${tuple.degrees},src/test/java</arguments>
112112
<addOutputToClasspath>false</addOutputToClasspath>
113113
</configuration>

src/main/java/com/andrebreves/java/tuple/Tuple.java renamed to src/main/java/com/andrebreves/tuple/Tuple.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
/**
1717
* A Tuple that has up to 15 values.

src/main/java/com/andrebreves/java/tuple/Tuple0.java renamed to src/main/java/com/andrebreves/tuple/Tuple0.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
/**
1717
* A Tuple that has no values.

src/main/java/com/andrebreves/java/tuple/Tuple1.java renamed to src/main/java/com/andrebreves/tuple/Tuple1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

src/main/java/com/andrebreves/java/tuple/Tuple10.java renamed to src/main/java/com/andrebreves/tuple/Tuple10.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

src/main/java/com/andrebreves/java/tuple/Tuple11.java renamed to src/main/java/com/andrebreves/tuple/Tuple11.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

src/main/java/com/andrebreves/java/tuple/Tuple12.java renamed to src/main/java/com/andrebreves/tuple/Tuple12.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

src/main/java/com/andrebreves/java/tuple/Tuple13.java renamed to src/main/java/com/andrebreves/tuple/Tuple13.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

src/main/java/com/andrebreves/java/tuple/Tuple14.java renamed to src/main/java/com/andrebreves/tuple/Tuple14.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

src/main/java/com/andrebreves/java/tuple/Tuple15.java renamed to src/main/java/com/andrebreves/tuple/Tuple15.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14-
package com.andrebreves.java.tuple;
14+
package com.andrebreves.tuple;
1515

1616
import java.util.Objects;
1717

0 commit comments

Comments
 (0)