Skip to content

Commit

Permalink
Change project/package name to Group F #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Oriel Sanchez committed Mar 24, 2021
1 parent eaee867 commit 594bc74
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>edu.sdccd.cisc191.a.Client</mainClass>
<mainClass>edu.sdccd.cisc191.f.Client</mainClass>
</transformer>
</transformers>
<filters>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package edu.sdccd.cisc191.a;
package edu.sdccd.cisc191.f;

import java.net.*;
import java.util.Scanner;
import java.io.*;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package edu.sdccd.cisc191.a;
package edu.sdccd.cisc191.f;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.File;

public class CustomerRequest {
private Integer id;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package edu.sdccd.cisc191.a;
package edu.sdccd.cisc191.f;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.File;

public class CustomerResponse {
private Integer id;
private String firstName;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package edu.sdccd.cisc191.a;
package edu.sdccd.cisc191.f;

import static org.junit.jupiter.api.Assertions.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package edu.sdccd.cisc191.a;
package edu.sdccd.cisc191.f;

import static org.junit.jupiter.api.Assertions.*;

Expand Down
2 changes: 1 addition & 1 deletion Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>edu.sdccd.cisc191.a.Server</mainClass>
<mainClass>edu.sdccd.cisc191.f.Server</mainClass>
</transformer>
</transformers>
<filters>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package edu.sdccd.cisc191.a;
package edu.sdccd.cisc191.f;

import java.net.*;
import java.io.*;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- Plugin Versions -->
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
<compile.java.version>14</compile.java.version>
<compile.java.version>1.8</compile.java.version>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
Expand Down

0 comments on commit 594bc74

Please sign in to comment.