Skip to content

Commit

Permalink
Rebrand as LibJ
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed May 4, 2019
1 parent 367935b commit 8152a13
Show file tree
Hide file tree
Showing 41 changed files with 90 additions and 90 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2018 OpenJAX
# Copyright (c) 2018 LibJ
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,7 +18,7 @@ jdk:
- oraclejdk8
- oraclejdk11
install:
- cp settings.xml $HOME/.m2/settings.xml && rm -rf ~/.m2/repository/org/openjax
- cp settings.xml $HOME/.m2/settings.xml && rm -rf ~/.m2/repository/org/libj
script:
- 'if [ "$TRAVIS_JDK_VERSION" = "oraclejdk8" ] &&
[ "$TRAVIS_BRANCH" = "master" ] &&
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 OpenJAX
Copyright (c) 2014 LibJ

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (c) 2009 OpenJAX
Copyright (c) 2009 LibJ
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -20,29 +20,29 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openjax</groupId>
<artifactId>openjax</artifactId>
<version>2.5.3-SNAPSHOT</version>
<groupId>org.libj</groupId>
<artifactId>libj</artifactId>
<version>0.9.5-SNAPSHOT</version>
</parent>
<artifactId>sql</artifactId>
<version>0.4.5-SNAPSHOT</version>
<name>OpenJAX SQL</name>
<name>LibJ SQL</name>
<description>
A supplementary extension to the java.sql package, providing common functions and abstractions related to SQL.
</description>
<dependencies>
<dependency>
<groupId>org.openjax</groupId>
<groupId>org.libj</groupId>
<artifactId>logging</artifactId>
<version>0.4.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.openjax</groupId>
<groupId>org.libj</groupId>
<artifactId>util</artifactId>
<version>0.7.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.openjax</groupId>
<groupId>org.libj</groupId>
<artifactId>test</artifactId>
<version>0.6.9-SNAPSHOT</version>
<scope>test</scope>
Expand Down
2 changes: 1 addition & 1 deletion settings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (c) 2009 OpenJAX
Copyright (c) 2009 LibJ
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.openjax.sql;
package org.libj.sql;

import java.io.InputStream;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2009 OpenJAX
/* Copyright (c) 2009 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.sql.CallableStatement;
import java.sql.Connection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2009 OpenJAX
/* Copyright (c) 2009 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.io.InputStream;
import java.io.Reader;
Expand Down Expand Up @@ -44,8 +44,8 @@
import java.util.List;
import java.util.Map;

import org.openjax.util.DecimalFormatter;
import org.openjax.util.Hexadecimal;
import org.libj.util.DecimalFormatter;
import org.libj.util.Hexadecimal;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2009 OpenJAX
/* Copyright (c) 2009 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.sql.ResultSet;
import java.sql.SQLException;
Expand All @@ -23,7 +23,7 @@
import java.util.Arrays;
import java.util.List;

import org.openjax.logging.LoggerUtil;
import org.libj.logging.LoggerUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.event.Level;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2017 OpenJAX
/* Copyright (c) 2017 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,15 +14,15 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.sql.Date;
import java.sql.Time;
import java.time.LocalTime;
import java.time.temporal.ChronoField;
import java.time.temporal.ChronoUnit;

import org.openjax.util.Dates;
import org.libj.util.Dates;

/**
* Utility functions for operations pertaining to {@link Date} and {@link Time}.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2018 OpenJAX
/* Copyright (c) 2018 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.io.InputStream;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2018 OpenJAX
/* Copyright (c) 2018 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.sql.Array;
import java.sql.Blob;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2018 OpenJAX
/* Copyright (c) 2018 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.io.InputStream;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2018 OpenJAX
/* Copyright (c) 2018 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.io.InputStream;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2018 OpenJAX
/* Copyright (c) 2018 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.sql.Connection;
import java.sql.ResultSet;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2009 OpenJAX
/* Copyright (c) 2009 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.sql.ResultSet;
import java.sql.SQLException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2015 OpenJAX
/* Copyright (c) 2015 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,12 +14,12 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql;
package org.libj.sql;

import java.util.Arrays;
import java.util.StringTokenizer;

import org.openjax.util.Strings;
import org.libj.util.Strings;

/**
* Utility for formatting SQL.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.lang.reflect.Constructor;
import java.sql.SQLDataException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2016 OpenJAX
/* Copyright (c) 2016 LibJ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -14,7 +14,7 @@
* program. If not, see <http://opensource.org/licenses/MIT/>.
*/

package org.openjax.sql.exception;
package org.libj.sql.exception;

import java.sql.SQLException;

Expand Down
Loading

0 comments on commit 8152a13

Please sign in to comment.