-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
1,110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [MohabMohie] | ||
# Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
# patreon: # Replace with a single Patreon username | ||
# open_collective: # Replace with a single Open Collective username | ||
# ko_fi: # Replace with a single Ko-fi username | ||
# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
# liberapay: # Replace with a single Liberapay username | ||
# issuehunt: # Replace with a single IssueHunt username | ||
# otechie: # Replace with a single Otechie username | ||
# lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry | ||
# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
time: "00:00" | ||
timezone: "Africa/Cairo" | ||
|
||
# Maintain dependencies for maven | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
time: "00:00" | ||
timezone: "Africa/Cairo" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-22.04 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'java' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '21' | ||
distribution: 'zulu' | ||
check-latest: true | ||
server-id: ossrh | ||
server-username: MAVEN_USERNAME | ||
server-password: MAVEN_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
|
||
- name: Setup Prerequisites | ||
continue-on-error: true | ||
run: | | ||
git config --global user.signingKey ${{ secrets.GPG_KEYNAME }} | ||
git config --global commit.gpgsign true | ||
gpg --version | ||
gpgconf --kill gpg-agent | ||
gpg -K --keyid-format SHORT | ||
export GPG_TTY=$(tty) | ||
- name: Build SHAFT_Engine | ||
env: | ||
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
run: mvn -B clean package --file pom.xml -DskipTests | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: 'Dependency Review' | ||
on: | ||
pull_request: | ||
branches: [ main ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
dependency-review: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: 'Checkout Repository' | ||
uses: actions/checkout@v4 | ||
- name: 'Dependency Review' | ||
uses: actions/dependency-review-action@v3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Maven Central Continuous Delivery | ||
# Executed automatically when a new PR is merged to master, if the release number already exists this job will fail | ||
# This pipeline will build from main, upload the artifacts, and create the GitHub release | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_release_and_deliver: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '21' | ||
distribution: 'zulu' | ||
check-latest: true | ||
server-id: ossrh | ||
server-username: MAVEN_USERNAME | ||
server-password: MAVEN_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
# Captures the engine version from the pom.xml | ||
- name: Set Release Version Number | ||
run: | | ||
echo "RELEASE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV | ||
# Attempt to create a GitHub release using the version in the pom.xml, if this release already exists, this job will fail fast | ||
- name: Create GitHub Release | ||
id: create_release | ||
uses: ncipollo/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
allowUpdates: false | ||
generateReleaseNotes: true | ||
name: ${{ env.RELEASE_VERSION }} | ||
tag: ${{ env.RELEASE_VERSION }} | ||
- name: Setup Prerequisites | ||
run: | | ||
git config --global user.signingKey ${{ secrets.GPG_KEYNAME }} | ||
git config --global commit.gpgsign true | ||
gpg --version | ||
gpgconf --kill gpg-agent | ||
gpg -K --keyid-format SHORT | ||
export GPG_TTY=$(tty) | ||
- name: Deploy SHAFT to maven central | ||
continue-on-error: true | ||
env: | ||
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
run: mvn --batch-mode deploy "-DskipTests" "-Dgpg.keyname=${{secrets.GPG_KEYNAME}}" "-Dgpg.passphrase=${{secrets.GPG_PASSPHRASE}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,213 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>io.github.shafthq</groupId> | ||
<artifactId>SHAFT_SIKULIX</artifactId> | ||
<version>1.0.0</version> | ||
|
||
<properties> | ||
<!-- Make sure you point to the latest release version: https://github.com/ShaftHQ/SHAFT_ENGINE/releases --> | ||
<shaft_engine.version>8.1.20240127</shaft_engine.version> | ||
<aspectjweaver.version>1.9.21</aspectjweaver.version> | ||
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> | ||
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> | ||
<surefire-testng.version>3.2.5</surefire-testng.version> | ||
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> | ||
<junit-jupiter-engine.version>5.10.1</junit-jupiter-engine.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.shafthq</groupId> | ||
<artifactId>SHAFT_ENGINE</artifactId> | ||
<version>${shaft_engine.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sikulix</groupId> | ||
<artifactId>sikulixapi</artifactId> | ||
<version>2.0.5</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-handler</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.openpnp</groupId> | ||
<artifactId>opencv</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-commons</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-tree</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-nop</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>jul-to-slf4j</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>jcl-over-slf4j</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>log4j-over-slf4j</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.pdfbox</groupId> | ||
<artifactId>pdfbox</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${maven-compiler-plugin.version}</version> | ||
<configuration> | ||
<source>21</source> | ||
<target>21</target> | ||
<encoding>UTF-8</encoding> | ||
<maxmem>10240m</maxmem> | ||
<meminitial>1024m</meminitial> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>${maven-resources-plugin.version}</version> | ||
<configuration> | ||
<encoding>UTF-8</encoding> | ||
<outputDirectory>target/classes</outputDirectory> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>testng</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>${maven-surefire-plugin.version}</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.aspectj</groupId> | ||
<artifactId>aspectjweaver</artifactId> | ||
<version>${aspectjweaver.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.surefire</groupId> | ||
<artifactId>surefire-testng</artifactId> | ||
<version>${surefire-testng.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<configuration> | ||
<systemPropertyVariables> | ||
<testng.dtd.http>true</testng.dtd.http> | ||
</systemPropertyVariables> | ||
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> | ||
<failIfNoTests>false</failIfNoTests> | ||
<trimStackTrace>false</trimStackTrace> | ||
<useFile>false</useFile> | ||
<encoding>UTF-8</encoding> | ||
<argLine> | ||
-javaagent:${user.home}/.m2/repository/org/aspectj/aspectjweaver/${aspectjweaver.version}/aspectjweaver-${aspectjweaver.version}.jar | ||
</argLine> | ||
<properties> | ||
<property> | ||
<name>usedefaultlisteners</name> | ||
<value>false</value> | ||
</property> | ||
<property> | ||
<name>listener</name> | ||
<value>com.shaft.listeners.TestNGListener</value> | ||
</property> | ||
</properties> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
<id>junit</id> | ||
<activation> | ||
<file> | ||
<missing>src/test/resources/META-INF/services/org.testng.ITestNGListener</missing> | ||
<exists>src/test/resources/META-INF/services/org.junit.platform.launcher.LauncherSessionListener</exists> | ||
</file> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>${maven-surefire-plugin.version}</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.aspectj</groupId> | ||
<artifactId>aspectjweaver</artifactId> | ||
<version>${aspectjweaver.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>${junit-jupiter-engine.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<configuration> | ||
<systemPropertyVariables> | ||
<testng.dtd.http>true</testng.dtd.http> | ||
</systemPropertyVariables> | ||
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> | ||
<failIfNoTests>false</failIfNoTests> | ||
<trimStackTrace>false</trimStackTrace> | ||
<useFile>false</useFile> | ||
<encoding>UTF-8</encoding> | ||
<argLine> | ||
-javaagent:${user.home}/.m2/repository/org/aspectj/aspectjweaver/${aspectjweaver.version}/aspectjweaver-${aspectjweaver.version}.jar | ||
</argLine> | ||
<properties> | ||
<property> | ||
<name>usedefaultlisteners</name> | ||
<value>false</value> | ||
</property> | ||
<property> | ||
<name>listener</name> | ||
<value>com.shaft.listeners.JunitListener</value> | ||
</property> | ||
</properties> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.