feat: Create base application files
3 unresolved threads
3 unresolved threads
Resolves #1 (closed)
Merge request reports
Activity
Filter activity
Decided to combine the 2 changes here: !2 (merged)
- 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 Sounds good. I'll make the changes here: !2 (merged)
- 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') { We should comment out the
deploy to cluster
step until we have the cluster running properly, as this will fail otherwise. You can use a Java multiline comment to comment it out for now https://stackoverflow.com/a/53741488/13727794Sounds good. I'll make the changes here: !2 (merged)
- 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>
Please register or sign in to reply