Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#47] Upgrade to jopa 2.0.0-SNAPSHOT #52

Merged
merged 1 commit into from
Jan 3, 2024
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
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@ buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "io.freefair.gradle:aspectj-plugin:6.4.3"
}
}

plugins {
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
id 'io.freefair.aspectj.post-compile-weaving' version '8.4'
id 'java'
id 'war'
}
Expand All @@ -25,6 +21,12 @@ compileJava {

repositories {
mavenCentral()
maven{
url "https://oss.sonatype.org/content/repositories/snapshots"
mavenContent {
snapshotsOnly()
}
}
}

war {
Expand All @@ -34,7 +36,7 @@ war {
sourceSets.main.java.srcDirs += "src/main/generated"

dependencies {
def jopaVersion = '1.1.4'
def jopaVersion = '2.0.0-SNAPSHOT'
implementation "cz.cvut.kbss.jopa:jopa-impl:$jopaVersion"
implementation "cz.cvut.kbss.jopa:ontodriver-rdf4j:$jopaVersion"
implementation 'cz.cvut.kbss.jsonld:jb4jsonld-jackson:0.13.2'
Expand All @@ -57,8 +59,6 @@ dependencies {

implementation 'javax.xml.bind:jaxb-api:2.3.1' // needed for java 17

aspect 'cz.cvut.kbss.jopa:jopa-impl:1.1.4'

testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import org.springframework.transaction.annotation.EnableTransactionManagement;

@Configuration
@EnableAspectJAutoProxy(proxyTargetClass = true)
@ComponentScan(basePackages = "cz.cvut.kbss.analysis.persistence")
@Import({TestPersistenceFactory.class})
@EnableTransactionManagement
Expand Down
Loading