Skip to content

Commit

Permalink
Fix #336
Browse files Browse the repository at this point in the history
  • Loading branch information
olevitt committed Jan 8, 2024
1 parent 373c62e commit 6cb266b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 97 deletions.
13 changes: 0 additions & 13 deletions onyxia-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,6 @@
<artifactId>jackson-databind</artifactId>
</dependency>

<!-- https://mvnrepository.com/artifact/software.amazon.awssdk/s3 -->
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>2.21.38</version>
</dependency>

<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sts</artifactId>
<version>2.21.38</version>
</dependency>

<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-server-mock</artifactId>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ public class Project {
@Schema(description = "If not null, this project belong to this group name.")
private String group;

@Schema(description = "If not null, this project have this bucket")
private String bucket;

@Schema(description = "If not null, this project have this deployment environment.")
private String namespace;

Expand Down Expand Up @@ -41,14 +38,6 @@ public void setGroup(String group) {
this.group = group;
}

public String getBucket() {
return bucket;
}

public void setBucket(String bucket) {
this.bucket = bucket;
}

public String getNamespace() {
return namespace;
}
Expand Down

0 comments on commit 6cb266b

Please sign in to comment.