Initial
This commit is contained in:
49
web-container/pom.xml
Normal file
49
web-container/pom.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
||||
<artifactId>nbs-cloud-aggregator</artifactId>
|
||||
<version>1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
||||
<artifactId>web-container</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<build>
|
||||
<finalName>${project.artifactId}</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>17</source>
|
||||
<target>17</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<!-- nbs-cloud modules -->
|
||||
<dependency>
|
||||
<groupId>de.77zzc7.nbs-cloud</groupId>
|
||||
<artifactId>files</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- Spring -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,11 @@
|
||||
package de.nbscloud.webcontainer;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class Application {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(Application.class, args);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package de.nbscloud.webcontainer.config;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
@ConfigurationProperties(prefix = "nbs-cloud.web-container")
|
||||
@ComponentScan("de.nbscloud.files")
|
||||
public class WebContainerConfig {
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
3
web-container/target/maven-archiver/pom.properties
Normal file
3
web-container/target/maven-archiver/pom.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
artifactId=web-container
|
||||
groupId=de.77zzcx7.nbs-cloud
|
||||
version=1-SNAPSHOT
|
||||
@@ -0,0 +1,2 @@
|
||||
de/nbscloud/webcontainer/config/WebContainerConfig.class
|
||||
de/nbscloud/webcontainer/Application.class
|
||||
@@ -0,0 +1,2 @@
|
||||
/home/marius/dev/nbs-cloud/web-container/src/main/java/de/nbscloud/webcontainer/Application.java
|
||||
/home/marius/dev/nbs-cloud/web-container/src/main/java/de/nbscloud/webcontainer/config/WebContainerConfig.java
|
||||
BIN
web-container/target/web-container.jar
Normal file
BIN
web-container/target/web-container.jar
Normal file
Binary file not shown.
BIN
web-container/target/web-container.jar.original
Normal file
BIN
web-container/target/web-container.jar.original
Normal file
Binary file not shown.
Reference in New Issue
Block a user