forked from damnhandy/Handy-URI-Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Prepare "wcm.io Caravan Handy URI Templates" fork #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
3445a64
convert submodule "uritemplate-test" to simple folder
stefanseifert 6a8b559
cleanup and simplify pom, switch to wcm.io global-parent, remove buil…
stefanseifert ed87b33
rename to LICENSE so it's detected by github
stefanseifert a655e85
cleanup version numbers
stefanseifert 4184f2b
update git settings
stefanseifert bfedf84
disable twitter search API test
stefanseifert c9db169
disable malfunctioning twitter search test
stefanseifert 48bb2c4
switch to bnd-maven-plugin, suppress javadoc errors
stefanseifert 17f80d9
move to wcm.io caravan namespace
stefanseifert 917b445
update readme
stefanseifert 0c4b8c7
add manifest
stefanseifert e844ebd
update junit dependency
stefanseifert b3d2ad1
update links
stefanseifert 6c10362
update fork notice
stefanseifert a7cf802
add deploy workflow, remove unused site
stefanseifert e7e15a3
add release profile
stefanseifert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,54 @@ | ||
| # Declare text files with unix file ending | ||
| *.conf text eol=lf | ||
| *.config text eol=lf | ||
| *.css text eol=lf | ||
| *.dtd text eol=lf | ||
| *.esp text eol=lf | ||
| *.ecma text eol=lf | ||
| *.groovy text eol=lf | ||
| *.hbrs text eol=lf | ||
| *.hbs text eol=lf | ||
| *.htm text eol=lf | ||
| *.html text eol=lf | ||
| *.java text eol=lf | ||
| *.jpage text eol=lf | ||
| *.js text eol=lf | ||
| *.json text eol=lf | ||
| *.jsp text eol=lf | ||
| *.mustache text eol=lf | ||
| *.tld text eol=lf | ||
| *.launch text eol=lf | ||
| *.log text eol=lf | ||
| *.php text eol=lf | ||
| *.pl text eol=lf | ||
| *.project text eol=lf | ||
| *.properties text eol=lf | ||
| *.props text eol=lf | ||
| *.sass text eol=lf | ||
| *.scss text eol=lf | ||
| *.sh text eol=lf | ||
| *.shtm text eol=lf | ||
| *.shtml text eol=lf | ||
| *.sql text eol=lf | ||
| *.svg text eol=lf | ||
| *.txt text eol=lf | ||
| *.vm text eol=lf | ||
| *.xml text eol=lf | ||
| *.xsd text eol=lf | ||
| *.xsl text eol=lf | ||
| *.xslt text eol=lf | ||
| *.yml text eol=lf | ||
| *.yaml text eol=lf | ||
|
|
||
|
|
||
| # Declare windows-specific text files with windows file ending | ||
| *.asp text eol=crlf | ||
| *.asax text eol=crlf | ||
| *.asa text eol=crlf | ||
| *.aspx text eol=crlf | ||
| *.bat text eol=crlf | ||
| *.cmd text eol=crlf | ||
| *.cs text eol=crlf | ||
| *.csproj text eol=crlf | ||
| *.reg text eol=crlf | ||
| *.sln text eol=crlf |
This file contains hidden or 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,34 @@ | ||
| # Build validation | ||
|
|
||
| name: Build | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - develop | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| java: [17] | ||
| os: [ubuntu-latest] | ||
| distribution: [temurin] | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Setup JDK | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: ${{ matrix.distribution }} | ||
| java-version: ${{ matrix.java }} | ||
| cache: maven | ||
|
|
||
| - name: Build and verify | ||
| run: mvn -Pcontinuous-integration -B -U clean verify | ||
This file contains hidden or 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,31 @@ | ||
| # Deploy snapshots to Sonatype OSS repository and deploy site to GitHub Pages | ||
|
|
||
| name: Deploy | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - develop | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Setup JDK | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 17 | ||
| cache: maven | ||
|
|
||
| - name: Build, verify, deploy | ||
| env: | ||
| SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
| SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
| run: mvn -Pcontinuous-integration -B -U clean deploy |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,32 +1,34 @@ | ||
| *.class | ||
| *~ | ||
| .*.swp | ||
| .*.swo | ||
| .loadpath | ||
| .buildpath | ||
| target/ | ||
| pom.xml.tag | ||
| pom.xml.releaseBackup | ||
| pom.xml.versionsBackup | ||
| pom.xml.next | ||
| release.properties | ||
| maven-eclipse.xml | ||
| infinitest.filters | ||
|
|
||
| node_modules/ | ||
| npm-debug.log | ||
|
|
||
| .nodejs | ||
| .project | ||
| .settings | ||
| .classpath | ||
| .metadata | ||
| .springBeans | ||
| .settings | ||
| .externalToolBuilders | ||
| .pmd | ||
| .eclipse-pmd | ||
| .checkstyle | ||
| .idea | ||
| .vagrant | ||
| *.iml | ||
| *.ipr | ||
| *.iws | ||
| git.properties | ||
| *.log | ||
| .checkstyle | ||
| nbproject | ||
| .DS_Store | ||
| target | ||
| test-output | ||
| nbactions.xml | ||
| build | ||
| release.properties | ||
| **/pom.xml.backup | ||
| **/release.properties | ||
| **/pom.xml.branch | ||
| **/pom.xml.next | ||
| **/pom.xml.releaseBackup | ||
| **/pom.xml.tag | ||
| atlassian-ide-plugin.xml | ||
| *.retry | ||
| .rubygems | ||
| .sass-cache | ||
| .rubygems-gem-maven-plugin | ||
| *.sublime-* | ||
| *nbactions*.xml | ||
| .temp/ | ||
| .vlt | ||
| .vlt-sync* | ||
| .brackets.json |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.