Skip to content

Commit

Permalink
chore: Move main repo to GH
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Solórzano <[email protected]>
  • Loading branch information
jorsol committed Apr 2, 2024
1 parent ab97198 commit 675586d
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 30 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/lockdown.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B verify -Prun-its --file pom.xml

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
14 changes: 7 additions & 7 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<packaging>pom</packaging>

<name>Stringprep Project</name>
<description>Stringprep Java implementation</description>
<url>https://gitlab.com/ongresinc/stringprep</url>
<description>Stringprep (RFC 3454) Java implementation</description>
<url>https://github.com/ongres/stringprep</url>
<inceptionYear>2019</inceptionYear>

<organization>
Expand Down Expand Up @@ -44,14 +44,14 @@
</developers>

<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:git@gitlab.com:ongresinc/stringprep.git</connection>
<developerConnection>scm:git:git@gitlab.com:ongresinc/stringprep.git</developerConnection>
<url>https://gitlab.com/ongresinc/stringprep</url>
<connection>scm:git:git@github.com:ongres/stringprep.git</connection>
<developerConnection>scm:git:git@github.com:ongres/stringprep.git</developerConnection>
<url>https://github.com/ongres/stringprep</url>
</scm>

<issueManagement>
<system>GitLab</system>
<url>https://gitlab.com/ongresinc/stringprep/issues</url>
<system>GitHub</system>
<url>https://github.com/ongres/stringprep/issues</url>
</issueManagement>

<distributionManagement>
Expand Down

0 comments on commit 675586d

Please sign in to comment.