diff --git a/notification/openapi.yaml b/notification/openapi.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/notification/pom.xml b/notification/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..e35fec3d78028b42117f300a91071b8bca713f1e --- /dev/null +++ b/notification/pom.xml @@ -0,0 +1,109 @@ +<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <artifactId>formula-team-management</artifactId> + <groupId>cz.muni.pa165</groupId> + <version>0.0.1-SNAPSHOT</version> + </parent> + + <artifactId>notification</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name>Generated notification</name> + <description>Notification generated using OpenAPI Generator "java"</description> + + <build> + <defaultGoal>spring-boot:run</defaultGoal> + <!-- name of executable JAR file --> + <finalName>notification_generated</finalName> + + <plugins> + <plugin> + <groupId>org.openapitools</groupId> + <artifactId>openapi-generator-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>generate</goal> + </goals> + <configuration> + <inputSpec>${project.basedir}/openapi.yaml</inputSpec> + <generatorName>spring</generatorName> + <apiPackage>cz.muni.pa165.generated.api</apiPackage> + <modelPackage>cz.muni.pa165.generated.model</modelPackage> + <!-- https://openapi-generator.tech/docs/generators/spring --> + <configOptions> + <basePackage>cz.muni.pa165.rest</basePackage> + <configPackage>cz.muni.pa165.generated.config</configPackage> + <useSpringBoot3>true</useSpringBoot3> + <useTags>true</useTags> + <delegatePattern>true</delegatePattern> + </configOptions> + </configuration> + </execution> + </executions> + </plugin> + <!-- create executable jar --> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <executable>true</executable> + </configuration> + </plugin> + <!-- run integration tests in "mvn verify" phase --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + <dependency> + <groupId>jakarta.annotation</groupId> + <artifactId>jakarta.annotation-api</artifactId> + </dependency> + <dependency> + <groupId>jakarta.validation</groupId> + <artifactId>jakarta.validation-api</artifactId> + </dependency> + <dependency> + <groupId>io.swagger.core.v3</groupId> + <artifactId>swagger-models-jakarta</artifactId> + </dependency> + <dependency> + <groupId>io.swagger.core.v3</groupId> + <artifactId>swagger-annotations-jakarta</artifactId> + </dependency> + <dependency> + <groupId>org.openapitools</groupId> + <artifactId>jackson-databind-nullable</artifactId> + </dependency> + <dependency> + <groupId>javax.validation</groupId> + <artifactId>validation-api</artifactId> + </dependency> + + <!-- for including Swagger UI --> + <dependency> + <groupId>org.springdoc</groupId> + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> + </dependency> + + <!-- for testing --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + + </dependencies> + +</project> diff --git a/pom.xml b/pom.xml index 714b2e3361158d135cc769f73b41073348f02ce6..026ea14366791c3f8da12525ac9af921d82e38e4 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,8 @@ <module>core</module> <module>application</module> <module>visualization</module> - </modules> + <module>notification</module> + </modules> <!-- properties are inherited into children projects and can be used anywhere with ${property} --> <properties>