Skip to content
Snippets Groups Projects

feat: Create base application files

Closed Zachary Sabourin requested to merge zacharysabourin/eclipse-openvsx-api:main into main
3 unresolved threads

Resolves #1 (closed)

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
pom.xml 0 → 100644
31 </snapshots>
32 </repository>
33 </repositories>
34 <dependencyManagement>
35 <dependencies>
36 <dependency>
37 <groupId>${quarkus.platform.group-id}</groupId>
38 <artifactId>${quarkus.platform.artifact-id}</artifactId>
39 <version>${quarkus.platform.version}</version>
40 <type>pom</type>
41 <scope>import</scope>
42 </dependency>
43 </dependencies>
44 </dependencyManagement>
45 <dependencies>
46
  • Martin Lowe
  • Jenkinsfile 0 → 100644
    136 anyOf {
    137 environment name: 'ENVIRONMENT', value: 'production'
    138 environment name: 'ENVIRONMENT', value: 'staging'
    139 }
    140 }
    141 steps {
    142 withDockerRegistry([credentialsId: '04264967-fea0-40c2-bf60-09af5aeba60f', url: 'https://index.docker.io/v1/']) {
    143 sh '''
    144 docker push ${IMAGE_NAME}:${TAG_NAME}
    145 docker push ${IMAGE_NAME}:latest
    146 '''
    147 }
    148 }
    149 }
    150
    151 stage('Deploy to cluster') {
  • Martin Lowe
  • pom.xml 0 → 100644
    4 <groupId>org.eclipsefoundation</groupId>
    5 <artifactId>eclipse-openvsx-api</artifactId>
    6 <version>1.0.0-SNAPSHOT</version>
    7 <properties>
    8 <compiler-plugin.version>3.8.1</compiler-plugin.version>
    9 <failsafe.useModulePath>false</failsafe.useModulePath>
    10 <maven.compiler.release>11</maven.compiler.release>
    11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    12 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    13 <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
    14 <quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
    15 <quarkus.platform.version>2.11.2.Final</quarkus.platform.version>
    16 <surefire-plugin.version>3.0.0-M5</surefire-plugin.version>
    17 <auto-value.version>1.8.2</auto-value.version>
    18 <hibernate.version>5.5.6.Final</hibernate.version>
    19 <eclipse-api-version>0.7.0-SNAPSHOT</eclipse-api-version>
    • I'm going to hold off on approving the changes as I plan to roll out 2.14 support and increment our API to 0.7.0 later today. We have enough big features to justify it. I'll ping you when that's live

    • Please register or sign in to reply
    Please register or sign in to reply
    Loading