Skip to content

Commit

Permalink
all: retrofit under io.orijtech.integrations.ocjdbc
Browse files Browse the repository at this point in the history
Retrofit this package under
    "io.orijtech.integrations.ocjdbc"
instead of
    "io.opencensus.integration.jdbc"

because publishing changes under the official OpenCensus
artifact group is a source of contention due to the OpenCensus Java
team not wanting to have to maintain integrations for life but also
the process of publishing is highly bureaucratic.
Also we've waited for more than 3 months for a single release which
has stalled usage, promotion, feedback and marketing of this integration
as per:
* census-ecosystem#32
* census-ecosystem#56
* census-instrumentation/opencensus-website#527

This package to be published is maintained under good faith for the entire OpenCensus
community and the licenses all stand; just that the artifact is now
being published under "io.orijtech.integrations.ocjdbc" which guts out
on the previously mentioned bureaucracy, indefinite stalls in publishing
and puts this integration into the hands of users.
  • Loading branch information
odeke-em committed Jan 11, 2019
1 parent 8d293a5 commit 427fef6
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'maven'
apply plugin: "net.ltgt.errorprone"
apply plugin: "signing"

group = "io.opencensus.integration"
group = "io.orijtech.integrations"
version = "0.0.2" // CURRENT_OCJDBC_VERSION

sourceCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "opencensus-jdbc"
rootProject.name = "ocjdbc"
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.stats.Aggregation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.integration.jdbc.Observability.TraceOption;
import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.orijtech.integrations.ocjdbc.Observability.TraceOption;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.sql.CallableStatement;
import java.sql.SQLException;
import java.util.EnumSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.integration.jdbc.Observability.TraceOption;
import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.orijtech.integrations.ocjdbc.Observability.TraceOption;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.EnumSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.integration.jdbc.Observability.TraceOption;
import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.orijtech.integrations.ocjdbc.Observability.TraceOption;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.sql.Driver;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.integration.jdbc.Observability.TraceOption;
import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.orijtech.integrations.ocjdbc.Observability.TraceOption;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.EnumSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.sql.ResultSet;
import java.sql.SQLException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import io.opencensus.common.Scope;
import io.opencensus.integration.jdbc.Observability.TraceOption;
import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.orijtech.integrations.ocjdbc.Observability.TraceOption;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.EnumSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package io.opencensus.integration.jdbc;
package io.orijtech.integrations.ocjdbc;

import static com.google.common.truth.Truth.assertThat;
import static org.mockito.Matchers.any;
Expand All @@ -21,7 +21,6 @@
import static org.mockito.Matchers.anyString;
import static org.mockito.Matchers.eq;

import io.opencensus.integration.jdbc.Observability.TrackingOperation;
import io.opencensus.stats.Aggregation.Distribution;
import io.opencensus.stats.BucketBoundaries;
import io.opencensus.stats.Measure.MeasureDouble;
Expand All @@ -39,6 +38,7 @@
import io.opencensus.trace.SpanBuilder;
import io.opencensus.trace.Status;
import io.opencensus.trace.Tracer;
import io.orijtech.integrations.ocjdbc.Observability.TrackingOperation;
import java.util.Arrays;
import org.junit.Before;
import org.junit.Test;
Expand Down

0 comments on commit 427fef6

Please sign in to comment.