Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
Push to work
Browse files Browse the repository at this point in the history
  • Loading branch information
msentwickler committed May 8, 2020
1 parent db7e78d commit 0d207e7
Show file tree
Hide file tree
Showing 47 changed files with 4,801 additions and 240 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk11:alpine-jre

WORKDIR /eedu

COPY /target/gateway-0.1-SNAPSHOT.jar gateway.jar
COPY gateway-core/target/gateway-core-0.1-SNAPSHOT.jar gateway.jar

EXPOSE 80

Expand Down
88 changes: 88 additions & 0 deletions backend-api/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>gateway</artifactId>
<groupId>de.the-morpheus.e-du</groupId>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>backend-api</artifactId>

<dependencies>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>2.7.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>logging-interceptor</artifactId>
<version>2.7.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>1.8.4</version>
</dependency>
<dependency>
<groupId>org.realityforge.javax.annotation</groupId>
<artifactId>javax.annotation</artifactId>
<version>1.0.1</version>
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>3.0.19</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${project.basedir}/src/main/resources/task.yaml</inputSpec>
<language>java</language>
<apiPackage>de.themorpheus.edu.backend.api</apiPackage>
<modelPackage>de.themorpheus.edu.backend.model</modelPackage>
<invokerPackage>de.themorpheus.edu.backend.invoker</invokerPackage>
<configOptions>
<sourceFolder>${project.basedir}/src/main/java</sourceFolder>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>


</project>
Loading

0 comments on commit 0d207e7

Please sign in to comment.