Skip to content

Commit

Permalink
Updated copyright info
Browse files Browse the repository at this point in the history
  • Loading branch information
gurpreet- committed Aug 24, 2019
1 parent 1905921 commit 9360273
Show file tree
Hide file tree
Showing 15 changed files with 113 additions and 1 deletion.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

plugins {
id 'java-library'
id 'application'
Expand Down
8 changes: 8 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#
# Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v2.0. If a copy of the MPL was not distributed with this
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
#

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip
Expand Down
8 changes: 8 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

rootProject.name = 'resource-loader'

8 changes: 8 additions & 0 deletions src/main/java/co/libly/resourceloader/FileLoader.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

import java.io.File;
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/co/libly/resourceloader/JnaLoader.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

/**
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/co/libly/resourceloader/Main.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

import java.io.File;
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/co/libly/resourceloader/ResourceLoader.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;


Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

import java.io.File;
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/co/libly/resourceloader/mode/BundledMode.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader.mode;

public class BundledMode extends ResourceLoaderMode {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader.mode;

public class ResourceLoaderMode {
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/co/libly/resourceloader/mode/SystemMode.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader.mode;

public class SystemMode extends ResourceLoaderMode {
Expand Down
8 changes: 8 additions & 0 deletions src/test/java/co/libly/resourceloader/FileLoaderTest.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

import org.testng.annotations.Test;
Expand Down
8 changes: 8 additions & 0 deletions src/test/java/co/libly/resourceloader/SharedLibraryTest.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/.
*/

package co.libly.resourceloader;

import org.testng.annotations.Test;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/co/libly/resourceloader/Sodium.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Terl Tech Ltd • 14/06/19 17:54 • goterl.com
* Copyright (c) Libly - Terl Tech Ltd • 24/08/2019, 16:01 • libly.co, goterl.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v2.0. If a copy of the MPL was not distributed with this
Expand Down

0 comments on commit 9360273

Please sign in to comment.