@devkong/cli-nx 0.0.39 → 0.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli-nx",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
@@ -11,7 +11,7 @@ COPY --chown=quarkus:quarkus .editorconfig /code/
11
11
  USER quarkus
12
12
  WORKDIR /code
13
13
  COPY src /code/src
14
- RUN ./gradlew build -Dquarkus.package.main-class=io.kong.sdkkotlin.JsonSchemaGeneratingQuarkusApp -Dquarkus.native.enabled=true -Dquarkus.profile=prod -Dquarkus.package.jar.enabled=false
14
+ RUN ./gradlew build -Dquarkus.package.main-class=io.kong.sdkkotlin.QuarkusApp -Dquarkus.native.enabled=true -Dquarkus.profile=prod -Dquarkus.package.jar.enabled=false
15
15
 
16
16
  ## Stage 2 : create the docker final image
17
17
  FROM quay.io/quarkus/quarkus-micro-image:2.0
@@ -20,8 +20,8 @@ repositories {
20
20
  }
21
21
 
22
22
  dependencies {
23
- implementation("io.kong:kong-common:0.0.2-SNAPSHOT")
24
- implementation("io.kong:kong-sdk-kotlin:0.0.24-SNAPSHOT")
23
+ implementation("io.kong:kong-common:0.0.7-SNAPSHOT")
24
+ implementation("io.kong:kong-sdk-kotlin:0.0.31-SNAPSHOT")
25
25
 
26
26
  implementation(enforcedPlatform("io.quarkus.platform:quarkus-bom:$quarkusVersion"))
27
27
  implementation("io.quarkus:quarkus-arc")
@@ -2,6 +2,5 @@
2
2
  "id": "<%=id%>",
3
3
  "name": "<%=name%>",
4
4
  "sdk": "<%=platform%>",
5
- "category": "unknown",
6
- "alias": {}
5
+ "category": "unknown"
7
6
  }
@@ -4,8 +4,8 @@ FROM --platform=linux/amd64 python:3.13.1-slim-bullseye
4
4
 
5
5
  ENV APP_DIR=/deployments/app
6
6
 
7
- COPY ./requirements.txt $APP_DIR/requirements.txt
8
- RUN pip install -r $APP_DIR/requirements.txt
7
+ COPY ./requirements-lock.txt $APP_DIR/requirements-lock.txt
8
+ RUN pip install -r $APP_DIR/requirements-lock.txt
9
9
 
10
10
  COPY ./src $APP_DIR/src
11
11
  WORKDIR $APP_DIR
@@ -2,6 +2,5 @@
2
2
  "id": "<%=id%>",
3
3
  "name": "<%=name%>",
4
4
  "sdk": "<%=platform%>",
5
- "category": "unknown",
6
- "alias": {}
5
+ "category": "unknown"
7
6
  }
@@ -1,3 +1,2 @@
1
- --extra-index-url https://nexus.shared.app-dts.net/repository/python-hosted/simple
2
1
  pydantic==2.11.9
3
- kong-sdk==0.0.37
2
+ kong-sdk==0.0.39