Skip to content

Commit

Permalink
Change license to Apache 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atextor committed Jun 21, 2021
1 parent a6024f4 commit 455da25
Show file tree
Hide file tree
Showing 119 changed files with 1,658 additions and 1,309 deletions.
365 changes: 201 additions & 164 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# owl-cli

[![build](https://github.com/atextor/owl-cli/actions/workflows/build.yml/badge.svg)](https://github.com/atextor/owl-cli/actions/workflows/build.yml) [![codecov](https://codecov.io/gh/atextor/owl-cli/branch/main/graph/badge.svg)](https://codecov.io/gh/atextor/owl-cli) [![Known Vulnerabilities](https://snyk.io/test/github/atextor/owl-cli/badge.svg)](https://snyk.io/test/github/atextor/owl-cli) [![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0) [![](https://tokei.rs/b1/github/atextor/owl-cli)](https://github.com/Aaronepower/tokei)
[![build](https://github.com/atextor/owl-cli/actions/workflows/build.yml/badge.svg)](https://github.com/atextor/owl-cli/actions/workflows/build.yml) [![codecov](https://codecov.io/gh/atextor/owl-cli/branch/main/graph/badge.svg)](https://codecov.io/gh/atextor/owl-cli) [![Known Vulnerabilities](https://snyk.io/test/github/atextor/owl-cli/badge.svg)](https://snyk.io/test/github/atextor/owl-cli) [![License: Apache 2.0](https://img.shields.io/badge/License-Apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0) [![](https://tokei.rs/b1/github/atextor/owl-cli)](https://github.com/Aaronepower/tokei)


**owl-cli** is a command line tool for ontology engineering. It targets the [Web Ontology
Expand Down
16 changes: 16 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2021 Andreas Textor
*
* Licensed 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
*
* http://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.
*/

plugins {
id 'java'
id 'jacoco'
Expand Down
16 changes: 16 additions & 0 deletions cli/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2021 Andreas Textor
*
* Licensed 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
*
* http://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.
*/

plugins {
id 'java'
id 'application'
Expand Down
16 changes: 16 additions & 0 deletions cli/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
/*
* Copyright 2021 Andreas Textor
*
* Licensed 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
*
* http://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.
*/

rootProject.name = 'cli'
include ':diagram'
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2021, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/AbstractCommand.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/ErrorMessage.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/LoggingMixin.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/OWLCLI.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/OWLCLICommand.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/OWLCLIDiagramCommand.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
23 changes: 12 additions & 11 deletions cli/src/main/java/de/atextor/owlcli/OWLCLIWriteCommand.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
#
# Copyright 2021 Andreas Textor
#
# Licensed 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
#
# http://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.
#

ImageName = owl
Args = -H:ConfigurationFileDirectories=${.},${.}/../../picocli-generated/owl-cli/cli \
--initialize-at-build-time=uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
/*
* This file is part of OWL-CLI.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright (c) 2020, Andreas Textor.
* Copyright 2021 Andreas Textor
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www
* .gnu.org/licenses/.
* Licensed 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
*
* http://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.
*/

package de.atextor.owlcli;
Expand Down
Loading

0 comments on commit 455da25

Please sign in to comment.