Skip to content

Commit

Permalink
qanary-component-ned-openai-gpt: fixed deploy conf
Browse files Browse the repository at this point in the history
  • Loading branch information
anbo-de committed Jan 3, 2024
1 parent d9e812a commit bcad662
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions qanary-component-NED-OpenAI-GPT/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.7</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>17</java.version>
<qanary.version>[3.9.0,4.0.0)</qanary.version>
<docker.image.prefix>qanary</docker.image.prefix>
<!-- Replace the name of the docker image to be generated -->
<!-- if there is an error demanding a lower-case name, then you picked
an artifactId not following the naming conventions, (c.f., https://maven.apache.org/guides/mini/guide-naming-conventions.html) -->
<docker.image.name>qanary-component-ned-openai-gpt</docker.image.name>
<dockerfile-maven-version>1.4.13</dockerfile-maven-version>
<springdoc.version>1.7.0</springdoc.version>
Expand Down Expand Up @@ -122,9 +120,19 @@
<goal>push</goal>
</goals>
</execution>
<execution>
<id>default-2</id>
<goals>
<goal>tag</goal>
<goal>push</goal>
</goals>
<configuration>
<tag>latest</tag>
</configuration>
</execution>
</executions>
<configuration>
<repository>${docker.image.name}</repository>
<repository>${docker.image.prefix}/${docker.image.name}</repository>
<tag>${project.version}</tag>
<buildArgs>
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
Expand Down

0 comments on commit bcad662

Please sign in to comment.