Release 2.3.0
This commit is contained in:
parent
2a5f34c765
commit
c1a7bd0bee
@ -9,7 +9,7 @@
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen-maven-example</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ Codegen Maven</name>
|
||||
@ -51,7 +51,7 @@
|
||||
<dependency>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
@ -106,7 +106,7 @@
|
||||
<plugin>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen-maven</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>exec1</id>
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen-maven</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<packaging>maven-plugin</packaging>
|
||||
|
||||
<name>jOOQ Codegen Maven</name>
|
||||
@ -160,7 +160,7 @@
|
||||
<dependency>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<type>jar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ Codegen</name>
|
||||
@ -150,14 +150,14 @@
|
||||
<dependency>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-meta</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-console</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ</name>
|
||||
@ -201,7 +201,7 @@
|
||||
<dependency>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-meta</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ Meta</name>
|
||||
@ -198,7 +198,7 @@
|
||||
<dependency>
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<property name="dir.workspace" value="${basedir}/.." />
|
||||
<property name="dir.target" value="${basedir}/target" />
|
||||
<property name="dir.release" value="${basedir}/release" />
|
||||
<property name="version" value="2.2.1"/>
|
||||
<property name="version" value="2.3.0"/>
|
||||
|
||||
<!-- Run a full mvn clean package install deploy first before this -->
|
||||
<target name="release" description="Release a new version">
|
||||
|
||||
@ -54,6 +54,8 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
||||
import javax.swing.UIManager;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.ExecuteType;
|
||||
@ -74,7 +76,9 @@ import org.jooq.conf.RenderMapping;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.conf.SettingsTools;
|
||||
import org.jooq.debug.DebugListener;
|
||||
import org.jooq.debug.console.DatabaseDescriptor;
|
||||
import org.jooq.debug.Debugger;
|
||||
import org.jooq.debug.console.Console;
|
||||
import org.jooq.debug.console.remote.ClientDebugger;
|
||||
import org.jooq.debug.console.remote.RemoteDebuggerServer;
|
||||
import org.jooq.impl.Factory;
|
||||
import org.jooq.test._.TestStatisticsListener;
|
||||
@ -420,28 +424,12 @@ public abstract class jOOQAbstractTest<
|
||||
|
||||
boolean runConsoleInProcess = false;
|
||||
if (runConsoleInProcess) {
|
||||
DatabaseDescriptor descriptor = new DatabaseDescriptor() {
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return jOOQAbstractTest.this.schema();
|
||||
}
|
||||
|
||||
@Override
|
||||
public SQLDialect getSQLDialect() {
|
||||
return SQLDialect.ORACLE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Connection createConnection() {
|
||||
return jOOQAbstractTest.this.getConnection();
|
||||
}
|
||||
};
|
||||
|
||||
try {
|
||||
// UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
||||
// Console console = new Console(descriptor, true);
|
||||
// console.setLoggingActive(true);
|
||||
// console.setVisible(true);
|
||||
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
||||
Debugger debugger = new ClientDebugger("127.0.0.1", DEBUGGER_PORT);
|
||||
Console console = new Console(debugger, true);
|
||||
console.setLoggingActive(true);
|
||||
console.setVisible(true);
|
||||
}
|
||||
catch (Exception ignore) {}
|
||||
}
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
<version>2.3.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ</name>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user