Skip to content

Commit

Permalink
refactor: adapt to Vaadin snapshot changes (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati committed Feb 23, 2024
1 parent 0017bb4 commit 7e471d0
Show file tree
Hide file tree
Showing 23 changed files with 1,561 additions and 1,086 deletions.
1 change: 1 addition & 0 deletions etc/release-version-rules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
xsi:schemaLocation="https://www.mojohaus.org/VERSIONS/RULE/2.1.0 https://www.mojohaus.org/versions/versions-model/xsd/rule-2.1.0.xsd">
<rules>
<rule groupId="com.vaadin.hilla" comparisonMethod="numeric"/>
<rule groupId="com.vaadin" comparisonMethod="numeric"/>
</rules>
</ruleset>
6 changes: 3 additions & 3 deletions hilla-jandex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

<dependencies>
<dependency>
<groupId>com.vaadin.hilla</groupId>
<artifactId>endpoint</artifactId>
<groupId>com.vaadin</groupId>
<artifactId>hilla-endpoint</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
Expand All @@ -33,7 +33,7 @@
</exclusions>
</dependency>
<dependency>
<groupId>com.vaadin.hilla</groupId>
<groupId>com.vaadin</groupId>
<artifactId>hilla</artifactId>
<exclusions>
<exclusion>
Expand Down
12 changes: 8 additions & 4 deletions hilla-react-jandex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

<dependencies>
<dependency>
<groupId>com.vaadin.hilla</groupId>
<artifactId>endpoint</artifactId>
<groupId>com.vaadin</groupId>
<artifactId>hilla-endpoint</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
Expand All @@ -33,15 +33,19 @@
</exclusions>
</dependency>
<dependency>
<groupId>com.vaadin.hilla</groupId>
<artifactId>hilla-react</artifactId>
<groupId>com.vaadin</groupId>
<artifactId>hilla</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-dev</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
8 changes: 4 additions & 4 deletions hilla-shaded-deps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

<dependencies>
<dependency>
<groupId>com.vaadin.hilla</groupId>
<artifactId>endpoint</artifactId>
<groupId>com.vaadin</groupId>
<artifactId>hilla-endpoint</artifactId>
</dependency>
<dependency>
<groupId>com.vaadin.hilla</groupId>
<artifactId>engine-runtime</artifactId>
<groupId>com.vaadin</groupId>
<artifactId>hilla-engine-runtime</artifactId>
</dependency>
<!--
vaadin-core-versions.json and vaadin-versions.json have been removed frm the Hilla artifacts in
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/hybrid-smoke-tests/frontend/auth.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Uses the Vaadin provided login an logout helper methods
import { login as loginImpl, LoginResult, logout as logoutImpl } from '@vaadin/hilla-core';
import { login as loginImpl, LoginResult, logout as logoutImpl } from '@vaadin/hilla-frontend';
import * as UserInfoEndpoint from 'Frontend/generated/UserInfoEndpoint';
import UserInfo from 'Frontend/generated/com/example/application/entities/UserInfo';
import {appStore} from "Frontend/stores/app-store";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as HelloWorldEndpoint from 'Frontend/generated/HelloWorldEndpoint';
import {html, nothing} from 'lit';
import {customElement, state} from 'lit/decorators.js';
import {View} from '../../views/view';
import {Subscription} from "@vaadin/hilla-core";
import {Subscription} from "@vaadin/hilla-frontend";

@customElement('hello-world-view')
export class HelloWorldView extends View {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as HelloWorldEndpoint from 'Frontend/generated/HelloWorldEndpoint';
import {html, nothing} from 'lit';
import {customElement, state} from 'lit/decorators.js';
import {View} from '../../views/view';
import {Subscription} from "@vaadin/hilla-core";
import {Subscription} from "@vaadin/hilla-frontend";
import {
getClock,
getClockCancellable,
Expand Down

0 comments on commit 7e471d0

Please sign in to comment.