Skip to content

Commit

Permalink
Merge branch 'develop' into feat/caldav-intergration
Browse files Browse the repository at this point in the history
  • Loading branch information
Rdidmohamedelhadi authored Nov 20, 2023
2 parents 3b92217 + 4b4e299 commit 1263530
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 142 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/buildci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CI PR Build
on:
pull_request:
jobs:
build-ci:
name: CI Build
uses: exoplatform/swf-scripts/.github/workflows/cibuild.yml@master
with:
maven_profiles: 'exo-release,coverage'
secrets:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_3.xsd http://www.exoplatform.org/xml/ns/kernel_1_3.xsd"
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_3.xsd">

<import>war:/conf/agenda-connectors/agenda-connectors.xml</import>
<import>war:/conf/agenda-connectors/dynamic-container-configuration.xml</import>

</configuration>
Original file line number Diff line number Diff line change
@@ -1,33 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
<gatein-resources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.exoplatform.org/xml/ns/gatein_resources_1_4 http://www.exoplatform.org/xml/ns/gatein_resources_1_4" xmlns="http://www.exoplatform.org/xml/ns/gatein_resources_1_4">
<portlet-skin>
<application-name>Agenda Connectors</application-name>
<portlet-name>AgendaConnectors</portlet-name>
<skin-name>Enterprise</skin-name>
<css-path>/skin/css/agenda-connectors.css</css-path>
</portlet-skin>
<portlet>
<name>AgendaConnectors</name>
<module>
<script>
<path>/js/agendaConnectors.bundle.js</path>
</script>
<depends>
<module>extensionRegistry</module>
</depends>
<depends>
<module>eXoVueI18n</module>
</depends>
<depends>
<module>vue</module>
</depends>
<depends>
<module>vuetify</module>
</depends>
<depends>
<module>commonVueComponents</module>
</depends>
</module>
</portlet>
<module>
<name>AgendaConnectorsExtensions</name>
<load-group>AgendaConnectorsGRP</load-group>
<script>
<path>/js/agendaConnectors.bundle.js</path>
</script>
<depends>
<module>extensionRegistry</module>
</depends>
<depends>
<module>eXoVueI18n</module>
</depends>
<depends>
<module>vue</module>
</depends>
<depends>
<module>vuetify</module>
</depends>
<depends>
<module>commonVueComponents</module>
</depends>
</module>

</gatein-resources>
</gatein-resources>
21 changes: 0 additions & 21 deletions agenda-connectors-webapp/src/main/webapp/WEB-INF/portlet.xml

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,6 @@ const vuetify = new Vuetify(eXo.env.portal.vuetifyPreset);

const appId = 'AgendaConnectorsApplication';

export function init() {
exoi18n.loadLanguageAsync(lang, url).then(i18n => {
// init Vue app when locale resources are ready
Vue.createApp({
template: `<agenda-connectors id="${appId}" />`,
vuetify,
i18n
}, `#${appId}`, 'Agenda Connectors Settings');
});
}
// get overridden components if exists
if (extensionRegistry) {
const components = extensionRegistry.loadComponents('AgendaConnectors');
Expand All @@ -60,4 +50,14 @@ if (extensionRegistry) {
});
}
}
Vue.use(Vuetify);

exoi18n.loadLanguageAsync(lang, url).then(i18n => {
// init Vue app when locale resources are ready
Vue.createApp({
template: `<agenda-connectors id="${appId}" />`,
vuetify,
i18n
}, `#${appId}`, 'Agenda Connectors Settings');
});

Vue.use(Vuetify);

0 comments on commit 1263530

Please sign in to comment.