Skip to content
Snippets Groups Projects
Commit 44b94f84 authored by Righi Andrea (Student Com17)'s avatar Righi Andrea (Student Com17)
Browse files

updated maven dependency

parent 42411c1c
No related branches found
No related tags found
No related merge requests found
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>clar.team</groupId>
<artifactId>clar</artifactId>
<version>0.0.1-SNAPSHOT</version>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>clar</artifactId>
<groupId>clar.team</groupId>
<version>0.0.1-SNAPSHOT</version>
<modelVersion>4.0.0</modelVersion>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<profiles>
<profile>
<id>unit</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -10,18 +10,18 @@ public class Auction {
public boolean subscribe(int id) {
return false;
// TODO Auto-generated method stub
}
public boolean assignToUser(int id) {
return false;
// TODO Auto-generated method stub
}
public void checkTime() {
// TODO Auto-generated method stub
}
public static int getAuction(Auction a) {
......
......@@ -4,13 +4,22 @@ import java.util.ArrayList;
public class User {
public User() {
}
public static User getInstance() {
// TODO Auto-generated method stub
return null;
User u = new User();
return u;
}
public boolean login(String username, String email, String password) {
// TODO Auto-generated method stub
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment