Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PA165 - Airport - project
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ján Macháček
PA165 - Airport - project
Commits
9bbe046b
There was an error fetching the commit references. Please try again later.
Unverified
Commit
9bbe046b
authored
1 year ago
by
Adam Krídl
Browse files
Options
Downloads
Patches
Plain Diff
Add weather-client
parent
b38fc7fb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+1
-0
1 addition, 0 deletions
pom.xml
weather-client/pom.xml
+92
-0
92 additions, 0 deletions
weather-client/pom.xml
with
93 additions
and
0 deletions
pom.xml
+
1
−
0
View file @
9bbe046b
...
...
@@ -13,6 +13,7 @@
<module>
weather
</module>
<module>
core-client
</module>
<module>
report-client
</module>
<module>
weather-client
</module>
</modules>
<packaging>
pom
</packaging>
<name>
airport manager parent
</name>
...
...
This diff is collapsed.
Click to expand it.
weather-client/pom.xml
0 → 100644
+
92
−
0
View file @
9bbe046b
<?xml version="1.0"?>
<project
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
cz.muni.fi.pa165
</groupId>
<artifactId>
airport-manager
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<artifactId>
weather-client
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<name>
weather-client
</name>
<build>
<finalName>
weather-client-lib
</finalName>
<defaultGoal>
install
</defaultGoal>
<plugins>
<plugin>
<groupId>
org.openapitools
</groupId>
<artifactId>
openapi-generator-maven-plugin
</artifactId>
<executions>
<execution>
<goals>
<goal>
generate
</goal>
</goals>
<configuration>
<!-- see https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator-maven-plugin/README.md -->
<inputSpec>
${project.basedir}/../weather/openapi.yaml
</inputSpec>
<generatorName>
java
</generatorName>
<apiPackage>
cz.muni.fi.pa165.weather.client
</apiPackage>
<modelPackage>
cz.muni.fi.pa165.weather.client.model
</modelPackage>
<invokerPackage>
cz.muni.chat.fi.pa165.weather.client.invoker
</invokerPackage>
<verbose>
false
</verbose>
<generateApiTests>
false
</generateApiTests>
<generateModelTests>
false
</generateModelTests>
<generateApiDocumentation>
true
</generateApiDocumentation>
<generateModelDocumentation>
true
</generateModelDocumentation>
<configOptions>
<annotationLibrary>
none
</annotationLibrary>
<!-- see https://openapi-generator.tech/docs/generators/java/ -->
<library>
native
</library>
<hideGenerationTimestamp>
true
</hideGenerationTimestamp>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
io.swagger
</groupId>
<artifactId>
swagger-annotations
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-core
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.datatype
</groupId>
<artifactId>
jackson-datatype-jsr310
</artifactId>
</dependency>
<dependency>
<groupId>
org.openapitools
</groupId>
<artifactId>
jackson-databind-nullable
</artifactId>
</dependency>
<dependency>
<groupId>
com.google.code.findbugs
</groupId>
<artifactId>
jsr305
</artifactId>
</dependency>
<dependency>
<groupId>
jakarta.annotation
</groupId>
<artifactId>
jakarta.annotation-api
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
javax.annotation
</groupId>
<artifactId>
javax.annotation-api
</artifactId>
</dependency>
</dependencies>
</project>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment