Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeers committed Apr 11, 2024
1 parent adbbbb3 commit 4dabb03
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IMPORTANT: Please review the [CONTRIBUTING.md](../CONTRIBUTING.md) file for deta
All PRs must have an accompanied Jira issue. Please make sure you created it and linked it here.

BoxLang Jira: https://ortussolutions.atlassian.net/browse/BL/issues
Module Issues: https://github.com/boxlang-modules/@MODULE_SLUG@/issues
Module Issues: https://github.com/boxlang-modules/bx-orm/issues


## Type of change
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow is used to build releases
# It can also be called by other workflows to reuse the release flow.
name: @MODULE_NAME@ Release
name: bx-orm Release

on:
# If you push to main this will trigger a stable release
Expand All @@ -19,7 +19,7 @@ on:
type: boolean

env:
MODULE_ID: @MODULE_SLUG@
MODULE_ID: bx-orm
SNAPSHOT: ${{ inputs.snapshot || false }}
JDK: 17
GRADLE: 8.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: @MODULE_NAME@ Snapshots
name: bx-orm Snapshots

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: @MODULE_NAME@ Test Suites
name: bx-orm Test Suites

# We are a reusable Workflow only
on:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ build/**
### BOXLANG ###
/libs/
src/test/resources/libs/
grapher/**
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This project is open source, and as such, the maintainers give their free time t
BoxLang tracks its issues in Jira and each module track it's own issues in its repo.

- BoxLang JIra : https://ortussolutions.atlassian.net/browse/BL/issues
- Module Issues: https://github.com/boxlang-modules/@MODULE_SLUG@/issues
- Module Issues: https://github.com/boxlang-modules/bx-orm/issues

If you file a bug report, your issue should contain a title, a clear description of the issue, a way to replicate the issue, and any support files that we might need to replicate your issue. The goal of a bug report is to make it easy for yourself - and others - to replicate the bug and develop a fix for it. All issues that do not contain a way to replicate will not be addressed.

Expand Down
58 changes: 29 additions & 29 deletions box.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name":"@MODULE_NAME@",
"version":"@build.version@[email protected]@",
"location" : "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/@MODULE_SLUG@/@build.version@/@MODULE_SLUG@[email protected]@.zip",
"author":"Ortus Solutions",
"homepage":"https://github.com/boxlang-modules/@MODULE_SLUG@",
"documentation":"https://github.com/boxlang-modules/@MODULE_SLUG@",
"repository":{
"type":"git",
"URL":"https://github.com/boxlang-modules/@MODULE_SLUG@"
"name": "@MODULE_NAME@",
"version": "@build.version@[email protected]@",
"location": "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/bx-orm/@build.version@/bx-orm[email protected]@.zip",
"author": "Ortus Solutions",
"homepage": "https://github.com/boxlang-modules/bx-orm",
"documentation": "https://github.com/boxlang-modules/bx-orm",
"repository": {
"type": "git",
"URL": "https://github.com/boxlang-modules/bx-orm"
},
"bugs":"https://github.com/boxlang-modules/@MODULE_SLUG@/issues",
"slug":"@MODULE_SLUG@",
"shortDescription":"Module template for BoxLang modules",
"type":"boxlang-modules",
"keywords":[
"bugs": "https://github.com/boxlang-modules/bx-orm/issues",
"slug": "bx-orm",
"shortDescription": "Module template for BoxLang modules",
"type": "boxlang-modules",
"keywords": [
"boxlang"
],
"private":false,
"license":[
"private": false,
"license": [
{
"type":"Apache-2.0",
"URL":"https://www.apache.org/licenses/LICENSE-2.0"
"type": "Apache-2.0",
"URL": "https://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies" :{
"commandbox-cfformat":"*",
"commandbox-docbox":"*",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"testbox": "*"
},
"devDependencies": {
"commandbox-cfformat": "*",
"commandbox-docbox": "*",
"commandbox-dotenv": "*",
"commandbox-cfconfig": "*",
"testbox": "*"
},
"ignore": [
"**/.*",
"settings.gradle",
Expand All @@ -39,8 +39,8 @@
"/src/**",
"gradle/**"
],
"scripts":{
"setupTemplate": "task run taskFile=src/build/SetupTemplate.cfc",
"onRelease":"publish"
"scripts": {
"setupTemplate": "task run taskFile=src/build/SetupTemplate.cfc",
"onRelease": "publish"
}
}
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The name of the module
rootProject.name = '@MODULE_SLUG@'
rootProject.name = 'bx-orm'
2 changes: 1 addition & 1 deletion src/build/SetupTemplate.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ component {
command( "tokenReplace" )
.params(
path = "/#variables.cwd#/**",
token = "@MODULE_SLUG@",
token = "bx-orm",
replacement = moduleSlug
)
.run();
Expand Down

0 comments on commit 4dabb03

Please sign in to comment.