10 Ocak 2022 Pazartesi

Gradle

Örnek
Şöyle yaparız. 
compileOnly 'javax:javaee-api:8.0.1'
compileOnly 'javax:javaee-web-api:8.0.1'
implementation 'javax.resource:javax.resource-api:1.7.1'

testImplementation  'javax:javaee-web-api'
test için testImplementation kullanılıyor çünkü testler container içinde çalışmıyor. Açıklaması şöyle
Compile-only dependencies are distinctly different than regular compile dependencies. They are not included on the runtime classpath ...

Hiç yorum yok:

Yorum Gönder

Bean Validation @GroupSequence Anotasyonu

Örnek Elimizde şöyle bir kod olsun public class SampleRequest {   @NotNull   LocalDate startDate;   @NotNull   LocalDate endDate;   @AssertT...