Skip to content

Commit

Permalink
Fixed wrong snapshot version
Browse files Browse the repository at this point in the history
  • Loading branch information
urbim committed Feb 9, 2021
1 parent 7fe4267 commit e3a13c5
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kumuluzee-graphql-parent</artifactId>
<groupId>com.kumuluz.ee.graphql</groupId>
<version>1.2.0-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion graphql-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kumuluzee-graphql-parent</artifactId>
<groupId>com.kumuluz.ee.graphql</groupId>
<version>1.2.0-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion microprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kumuluzee-graphql-parent</artifactId>
<groupId>com.kumuluz.ee.graphql</groupId>
<version>1.2.0-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* GraphQL Application Class, used mainly for {@link javax.annotation.security.DeclareRoles} annotation.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class GraphQLApplication {
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* GraphQLConfiguration annotation - enables application class to be scanned for integration with kumuluzee-security.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* KumuluzEE MicroProfile GraphQL extension, implemented by SmallRye.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
@EeExtensionDef(name = "MicroProfileGraphQL", group = EeExtensionGroup.GRAPHQL)
@EeComponentDependencies({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Registers {@link KumuluzConfigMapper} configuration extension.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
@EeExtensionDef(name = "GraphQLMP", group = EeExtensionGroup.CONFIG)
public class GraphQLConfigExtension implements ConfigExtension {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Maps MicroProfile and SmallRye configuration key to KumuluzEE namespace.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class KumuluzConfigMapper implements ConfigurationSource {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* Collects classes annotated with {@link GraphQLApplicationClass} and writes them to a service file.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class AnnotationProcessor extends AbstractProcessor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* Scans classpath for annotations and initializes schema.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
@ApplicationScoped
public class GraphQLSchemaInitializer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Utilities for kumuluzee-rest integration.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class GraphQLUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Utilities when running in UberJAR.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class JarUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Adds required dependencies to deployments.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class DependencyAppender implements MavenDependencyAppender {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Registers library appender with Arquillian.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class GraphQLArquillianExtension implements LoadableExtension {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Adds GraphQL library (this repo) to deployments.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class GraphQLLibraryAppender extends CachedAuxilliaryArchiveAppender {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Skips tests, which are disabled for various reasons.
*
* @author Urban Malc
* @since 1.2.0
* @since 1.1.0
*/
public class SkipTestListener implements IInvokedMethodListener {

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.kumuluz.ee.graphql</groupId>
<artifactId>kumuluzee-graphql-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>

<packaging>pom</packaging>

Expand Down

0 comments on commit e3a13c5

Please sign in to comment.