Skip to content
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

Rewrite library #4

Draft
wants to merge 17 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Edit at https://www.gitignore.io/?templates=java,cmake,maven,eclipse,netbeans,intellij+all

### CMake ###
CMakeLists.txt.user
CMakeLists.txt
CMakeCache.txt
CMakeFiles
CMakeScripts
Expand Down
6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

27 changes: 0 additions & 27 deletions CMakeLists.txt

This file was deleted.

11 changes: 8 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pipeline {
when { not { anyOf {
branch 'master'
branch 'develop'
branch 'rewrite'
}}}

steps {
Expand All @@ -23,6 +24,7 @@ pipeline {
anyOf {
branch 'master'
branch 'develop'
branch 'rewrite'
}
}

Expand Down Expand Up @@ -52,7 +54,7 @@ pipeline {
steps {
rtMavenRun(
pom: 'pom.xml',
goals: 'source:jar install',
goals: 'clean source:jar install',
deployerId: "maven-deployer",
resolverId: "maven-resolver"
)
Expand All @@ -61,12 +63,15 @@ pipeline {

stage('Snapshot') {
when {
branch 'develop'
anyOf {
branch 'develop'
branch 'rewrite'
}
}
steps {
rtMavenRun(
pom: 'pom.xml',
goals: 'source:jar install',
goals: 'clean source:jar install',
deployerId: "maven-deployer",
resolverId: "maven-resolver"
)
Expand Down
File renamed without changes.
33 changes: 33 additions & 0 deletions NOTICE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
CloudburstMC
================

Please visit the CloudburstMC website for more information:

* https://cloudburstmc.org/

Copyright 2021 CloudburstMC

CloudburstMC licenses this file to you under the Apache License,
version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at:

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.

Also, please refer to each LICENSE.<component>.txt file, which is located in
the 'license' directory of the distribution file, for the license terms of the
components that this product depends on.

-------------------------------------------------------------------------------

This product is statically linked against libdeflate.

* LICENSE:
* license/LICENSE.libdeflate.txt (BSD2)
* HOMEPAGE:
* https://github.com/ebiggers/libdeflate
7 changes: 0 additions & 7 deletions compile-native.sh

This file was deleted.

21 changes: 21 additions & 0 deletions license/LICENSE.libdeflate.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Copyright 2016 Eric Biggers

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading