Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ jobs:
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: 8
java-version: 11
- name: Publish jars
run: ./gradlew publish
run: ./gradlew :timebase-collections:publish :timebase-lang:publish :timebase-messages:publish :timebase-util:publish
env:
SONATYPE_REPOSITORY: ${{ secrets.SONATYPE_REPOSITORY }}
SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
Expand Down
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ configure(leafProjects) {
compileOnly 'com.google.code.findbugs:jsr305'
compileOnly 'com.google.code.findbugs:annotations'

testCompile 'junit:junit:4.12'
//'org.mockito:mockito-core:1.10.19'
testImplementation 'junit:junit:4.12'

spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.9.0'
}
Expand Down Expand Up @@ -263,15 +262,15 @@ configure(leafProjects) {
from components.java

pom {
name = 'thread.affinity'
name = project.name
packaging = 'jar'
description = 'A wrapper over net.openhft:affinity providing handy classes to create threads pinned to the specified CPUs.'
url = 'https://github.com/epam/ThreadAffinity'
description = 'Timebase Common utilities and collections.'
url = 'https://github.com/epam/TimeBaseCommons.git'

scm {
connection = 'scm:git:https://github.com/epam/ThreadAffinity.git'
developerConnection = 'scm:git:https://github.com/epam/ThreadAffinity.git'
url = 'https://github.com/epam/ThreadAffinity.git'
connection = 'scm:git:https://github.com/epam/TimeBaseCommons.git'
developerConnection = 'scm:git:https://github.com/epam/TimeBaseCommons.git'
url = 'https://github.com/epam/TimeBaseCommons.git'
}

licenses {
Expand Down
2 changes: 1 addition & 1 deletion collections/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = 'QuantServer commons-collections set of utilities'
description = 'Timebase commons-collections set of utilities'

buildscript {
repositories {
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Thu Feb 11 09:31:42 UTC 2021
version=6.0.58-SNAPSHOT

dfpVersion=0.11.01
version=6.0.53-SNAPSHOT
hdTimeVersion=0.2.4
group=com.epam.deltix
10 changes: 7 additions & 3 deletions lang/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ plugins {
id 'me.champeau.gradle.jmh' version '0.4.5' apply false
}

description = 'QuantServer commons-lang set of utilities'
description = 'Timebase commons-lang set of utilities'

dependencies {
implementation 'com.epam.deltix:dfp'
implementation 'com.epam.deltix:hd-date-time'
//implementation 'com.epam.deltix:dfp'
//implementation 'com.epam.deltix:hd-date-time'

implementation group: 'com.epam.deltix', name: 'dfp', version: dfpVersion
implementation group: 'com.epam.deltix', name: 'hd-date-time', version: hdTimeVersion
implementation 'com.epam.deltix:gflog-api'
implementation 'com.epam.deltix:gflog-core'

// For JMH-based tests
testImplementation 'org.openjdk.jmh:jmh-core'
Expand Down
2 changes: 1 addition & 1 deletion messages/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ configurations {
//
//compileJava.dependsOn generate

description = 'QuantServer Messages Interfaces'
description = 'Timebase Messages Interfaces'

dependencies {
//dojoGenerator group: 'deltix', name: 'dojo-generator', version: '3.0.10'
Expand Down
8 changes: 4 additions & 4 deletions util/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = 'QuantServer general purpose utilities'
description = 'Timebase general purpose utilities'

dependencies {
implementation project(':timebase-lang')
Expand All @@ -25,7 +25,7 @@ dependencies {
//compile 'org.glassfish.jaxb:jaxb-runtime:2.2.11' // Glassfish replaces JAXB RI
//compile('javax.xml:jsr173:1.0'){ transitive = false }

compile('net.java.dev.jna:jna:4.2.1'){ transitive = false }
compile('net.java.dev.jna:jna-platform:4.2.1'){ transitive = false }
compile('org.apache.bcel:bcel:6.0'){ transitive = false }
implementation('net.java.dev.jna:jna:4.2.1')
implementation('net.java.dev.jna:jna-platform:4.2.1')
implementation('org.apache.bcel:bcel:6.0')
}