Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
vadere
vadere
Commits
2479b1be
Commit
2479b1be
authored
Mar 01, 2019
by
Stefan Schuhbaeck
Browse files
increase supported source version of annotation processor to 11
parent
47f4bdd9
Pipeline
#94742
failed with stages
in 83 minutes and 57 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereAnnotation/src/org/vadere/annotation/factories/attributes/BaseAttributeFactoryProcessor.java
View file @
2479b1be
...
...
@@ -16,7 +16,7 @@ import javax.lang.model.element.TypeElement;
@SupportedAnnotationTypes
(
"org.vadere.annotation.factories.attributes.ModelAttributeClass"
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
8
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
11
)
@AutoService
(
Processor
.
class
)
public
class
BaseAttributeFactoryProcessor
extends
BaseFactoryProcessor
{
...
...
VadereAnnotation/src/org/vadere/annotation/factories/dataprocessors/DataProcessorFactoryProcessor.java
View file @
2479b1be
...
...
@@ -14,7 +14,7 @@ import javax.lang.model.SourceVersion;
import
javax.lang.model.element.Element
;
@SupportedAnnotationTypes
(
"org.vadere.annotation.factories.dataprocessors.DataProcessorClass"
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
8
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
11
)
@AutoService
(
Processor
.
class
)
public
class
DataProcessorFactoryProcessor
extends
BaseFactoryProcessor
{
...
...
VadereAnnotation/src/org/vadere/annotation/factories/migrationassistant/JoltTransformationFactoryProcessor.java
View file @
2479b1be
...
...
@@ -15,7 +15,7 @@ import javax.lang.model.element.Element;
import
javax.lang.model.type.MirroredTypeException
;
@SupportedAnnotationTypes
(
"org.vadere.annotation.factories.migrationassistant.MigrationTransformation"
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
8
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
11
)
@AutoService
(
Processor
.
class
)
public
class
JoltTransformationFactoryProcessor
extends
BaseFactoryProcessor
{
@Override
...
...
VadereAnnotation/src/org/vadere/annotation/factories/models/ModelFactoryProcessor.java
View file @
2479b1be
...
...
@@ -21,7 +21,7 @@ import javax.lang.model.element.TypeElement;
import
javax.tools.JavaFileObject
;
@SupportedAnnotationTypes
({
"org.vadere.annotation.factories.models.ModelClass"
})
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
8
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
11
)
@AutoService
(
Processor
.
class
)
public
class
ModelFactoryProcessor
extends
AbstractFactoryProcessor
{
...
...
VadereAnnotation/src/org/vadere/annotation/factories/outputfiles/OutputFileFactoryProcessor.java
View file @
2479b1be
...
...
@@ -15,7 +15,7 @@ import javax.lang.model.element.Element;
import
javax.lang.model.type.MirroredTypeException
;
@SupportedAnnotationTypes
(
"org.vadere.annotation.factories.outputfiles.OutputFileClass"
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
8
)
@SupportedSourceVersion
(
SourceVersion
.
RELEASE_
11
)
@AutoService
(
Processor
.
class
)
public
class
OutputFileFactoryProcessor
extends
BaseFactoryProcessor
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment