2015-11-19 23:47:41 +00:00
|
|
|
<project
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.vivoweb</groupId>
|
2016-07-06 06:19:51 +01:00
|
|
|
<artifactId>vivo-installer-vivo</artifactId>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-installer</artifactId>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2016-07-06 06:19:51 +01:00
|
|
|
<name>VIVO Install Web App</name>
|
2015-11-19 23:47:41 +00:00
|
|
|
|
2021-03-24 01:46:24 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>package</id>
|
|
|
|
<activation>
|
|
|
|
<property><name>app-name</name></property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<finalName>${app-name}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<archiveClasses>false</archiveClasses>
|
|
|
|
<overlays>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</overlay>
|
|
|
|
<!-- Overlays for multilingual support -->
|
|
|
|
<!-- overlay>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vitro-languages-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</overlay>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-languages-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</overlay -->
|
|
|
|
</overlays>
|
|
|
|
<webResources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/webResources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</webResources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>install</id>
|
|
|
|
<activation>
|
|
|
|
<property><name>tomcat-dir</name></property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>remove-webapp</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<delete dir="${tomcat-dir}/webapps/${project.build.finalName}" />
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>install</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>${project.artifactId}</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<outputDirectory>${tomcat-dir}/webapps/${project.build.finalName}</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2015-11-21 19:17:05 +00:00
|
|
|
<build>
|
2021-02-05 11:56:50 -05:00
|
|
|
<finalName>${app-name}</finalName>
|
2015-11-21 19:17:05 +00:00
|
|
|
<plugins>
|
2021-03-24 01:46:24 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-06-26 15:45:16 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>overlays</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-19 23:47:41 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
2015-11-20 21:21:25 +00:00
|
|
|
<artifactId>vivo-api</artifactId>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
2015-11-20 21:21:25 +00:00
|
|
|
<artifactId>vivo-webapp</artifactId>
|
|
|
|
<type>war</type>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependency>
|
2017-10-07 20:30:16 +01:00
|
|
|
<!-- Dependencies for multilingual support -->
|
Sprint i18n with main (#215)
* Layer uqam updates onto master (minus trailing whitespace)
* Update AddOrganizerRoleToPersonGenerator.java
Removed extraneous whitespace
* My whitespace (#153)
* Update AddPublicationToPersonGenerator.java
* Removed extraneous whitespace AND move RootUserPolicy.java from VIVO to Vitro
* Fixed whitespace in: AddAttendeeRoleToPersonGenerator.java
* Fixed indentations for AddOutreachProviderRoleToPersonGenerator.java
* Fixed indentations
* Removed extraneous whitespace (#158)
* Removed extraneous whitespace
* Fix bug introduced in cleaning up whitespace
* Tagging UQAM comments with the following tags
-Add-Feature
-Optimization
-Linguistic-Management
-Bug-Correction
* Update AddReviewerRoleToPersonGenerator.java
* Added an internationalization correction to be considered in the vivo-i18n-core that was forgotten when sprint-i18n was created.
* Fix typo in AddReviewerRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1774
* Fix typo in AddOutreachProviderRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1775
* Include language dependencies in build all of the time (#168)
Move "LocaleSelectionSetup" higher in the startup list so that the Vitro:RDFFilesLoader has the locale info available on its startup
Part of resolution to: https://jira.lyrasis.org/browse/VIVO-1836
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Made modifications to publicationToPersonUtils.js so that multilangua… (#170)
* Made modifications to publicationToPersonUtils.js so that multilanguage support will not break the javascript functionalty.
Co-authored-by: root <root@vivo-development.hs-mittweida.de>
Resolves: https://jira.lyrasis.org/browse/VIVO-1739
* Feature language en_CA (#169)
* Changing ontology extensions for n3 & assigning a base IRI to each
ontology
Co-authored-by: michelheonuqam <heon.michel@uqam.ca>
Co-authored-by: michelheon <heon@videotorn.ca>
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1862
* i18n: title tag and headings in capability map are in english in french version (#173)
* added multi-language support for ticket VIVO-1846
* fixed swapped properties, added Capability map title to i18n
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1847
* Added i18n support for Capability Map control buttons, JIRA ticket VIVO-1846
* removed redundat files which are now available via Vitro- and VIVO-languages
* added i18n support for the capability map, ticket vivo-1892
* Revert non-function RDF changes (#180)
Related to: https://jira.lyrasis.org/browse/VIVO-1905
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Ensure 'other' in Individual->Teaching->advisees->type is translated
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1881
* [VIVO-1842] i18n: Added function js_string at i18n variables to handle quotes properly (#181)
* added js_string at i18n strings to handle quotes properly, ticket vivo-1842
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1842
* replace static headings with i18n values (#183)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1844
* added empty check for getCountry, fixing bug with spanish label (es), ticket vivo-1900 (#182)
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1900
* Issue/vivo 1908 (#185)
* Provide fallback language in language-filtered webpage SPARQL query and use existing RDFService-based filtering for ConstantFieldOptions
Resolves: https://jira.lyrasis.org/browse/VIVO-1906
* Fix bug of missing toString() (#187)
Related to: https://jira.lyrasis.org/browse/VIVO-1906
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Remove files replicated in i18n (#186)
Related to: https://jira.lyrasis.org/browse/VIVO-1917
* removed redundant vitroAnnotations, now in VIVO-languages, ticket vivo-1821
* Removed key.png from the template and replaced it with css sprite and… (#184)
* Removed key.png from the template and replaced it with css sprite and descriptions in plain text.
* * adding height to background images, hopefully fixing issues
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1902
* [VIVO-1915] i18n - removing language select for label management for individuals (#190)
* removed the language select for managing multi language labels fpr individuals, ticket vivo-1915
* modified ManageLabelsForPersonGenerator so that you can only add an langauge label if it is not already set, ticket vivo-1915
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1915
* - added i18n() to hardcoded values
* added i18n support to person's domain in capability map, ticket 1867
* [VIVO-1946] - Update ResearcherID description in vivo.owl (#188)
* Update ResearcherID description in vivo.owl
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1946
* [VIVO-1936] i18n: updated the language comment in runtime.properties (#203)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
* [VIVO-1924] i18n: @en i18n properties are not loaded during first site startup. (#204)
* rearranged startup-listeners fixing bug with language files, ticket VIVO-1924
* Added a comment to prevent future bugs like this, ticket VIVO-1924
* fixed previous comment, ticket VIVO-1924
* Remove duplicate text from dropdown menus
* Minor checkstyle correction following: VIVO-1936 (#206)
Follow-on to: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* follow-up on vivo-1936 - restore default values in example-settings.xml (#210)
Co-authored-by: gneissone <mbgross@wustl.edu>
* [VIVO-1798] - Internationalize first and last name validation (#207)
* Internationalize first and last name validation
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1798
* adding collections process terms (#165)
* adding collections process terms
No JIRA :(
* Non-functional change to comment in example.applicationSetup.n3
Related to: https://jira.lyrasis.org/browse/VIVO-1741
* Update orcidConfirm.ftl (#199)
Fix i18n property used on ORCID confirmation step 2 button.
Related to https://jira.lyrasis.org/browse/VIVO-1945
* Fix external AGROVOC service URL
* URL fix for LCSH service
* Remove unnecessary pom.xml 'profile'
- Also, uncomment language overlays
- Noting that this is not actually necessary, as any 'war' Maven dependencies are automatically overlayed:
- https://maven.apache.org/plugins/maven-war-plugin/overlays.html
Co-authored-by: Andrew Woods <awoods@duraspace.org>
Co-authored-by: Nicolas D <46490666+nicalico@users.noreply.github.com>
Co-authored-by: UQAM-VIVO <heon.michel@uqam.ca>
Co-authored-by: matthiasluehr <60263380+matthiasluehr@users.noreply.github.com>
Co-authored-by: Michel Heon <heon@videotron.ca>
Co-authored-by: dofeldsc <dofeldsc@uos.de>
Co-authored-by: William Welling <wwelling@library.tamu.edu>
Co-authored-by: Brian Lowe <brianjlowe@gmail.com>
Co-authored-by: Matthias Lühr <luehr@hs-mittweida.de>
Co-authored-by: Ben <mbgross@wustl.edu>
Co-authored-by: Benjamin Kampe <benjamin@fehrmanns.net>
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
Co-authored-by: Gross, Benjamin <benjamin.gross@clarivate.com>
Co-authored-by: diatomsRcool <annethessen@gmail.com>
Co-authored-by: L.O <53535673+lb-ov@users.noreply.github.com>
2021-02-10 12:02:20 -05:00
|
|
|
<dependency>
|
2017-10-07 20:30:16 +01:00
|
|
|
<groupId>org.vivoweb</groupId>
|
Sprint i18n with main (#215)
* Layer uqam updates onto master (minus trailing whitespace)
* Update AddOrganizerRoleToPersonGenerator.java
Removed extraneous whitespace
* My whitespace (#153)
* Update AddPublicationToPersonGenerator.java
* Removed extraneous whitespace AND move RootUserPolicy.java from VIVO to Vitro
* Fixed whitespace in: AddAttendeeRoleToPersonGenerator.java
* Fixed indentations for AddOutreachProviderRoleToPersonGenerator.java
* Fixed indentations
* Removed extraneous whitespace (#158)
* Removed extraneous whitespace
* Fix bug introduced in cleaning up whitespace
* Tagging UQAM comments with the following tags
-Add-Feature
-Optimization
-Linguistic-Management
-Bug-Correction
* Update AddReviewerRoleToPersonGenerator.java
* Added an internationalization correction to be considered in the vivo-i18n-core that was forgotten when sprint-i18n was created.
* Fix typo in AddReviewerRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1774
* Fix typo in AddOutreachProviderRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1775
* Include language dependencies in build all of the time (#168)
Move "LocaleSelectionSetup" higher in the startup list so that the Vitro:RDFFilesLoader has the locale info available on its startup
Part of resolution to: https://jira.lyrasis.org/browse/VIVO-1836
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Made modifications to publicationToPersonUtils.js so that multilangua… (#170)
* Made modifications to publicationToPersonUtils.js so that multilanguage support will not break the javascript functionalty.
Co-authored-by: root <root@vivo-development.hs-mittweida.de>
Resolves: https://jira.lyrasis.org/browse/VIVO-1739
* Feature language en_CA (#169)
* Changing ontology extensions for n3 & assigning a base IRI to each
ontology
Co-authored-by: michelheonuqam <heon.michel@uqam.ca>
Co-authored-by: michelheon <heon@videotorn.ca>
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1862
* i18n: title tag and headings in capability map are in english in french version (#173)
* added multi-language support for ticket VIVO-1846
* fixed swapped properties, added Capability map title to i18n
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1847
* Added i18n support for Capability Map control buttons, JIRA ticket VIVO-1846
* removed redundat files which are now available via Vitro- and VIVO-languages
* added i18n support for the capability map, ticket vivo-1892
* Revert non-function RDF changes (#180)
Related to: https://jira.lyrasis.org/browse/VIVO-1905
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Ensure 'other' in Individual->Teaching->advisees->type is translated
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1881
* [VIVO-1842] i18n: Added function js_string at i18n variables to handle quotes properly (#181)
* added js_string at i18n strings to handle quotes properly, ticket vivo-1842
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1842
* replace static headings with i18n values (#183)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1844
* added empty check for getCountry, fixing bug with spanish label (es), ticket vivo-1900 (#182)
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1900
* Issue/vivo 1908 (#185)
* Provide fallback language in language-filtered webpage SPARQL query and use existing RDFService-based filtering for ConstantFieldOptions
Resolves: https://jira.lyrasis.org/browse/VIVO-1906
* Fix bug of missing toString() (#187)
Related to: https://jira.lyrasis.org/browse/VIVO-1906
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Remove files replicated in i18n (#186)
Related to: https://jira.lyrasis.org/browse/VIVO-1917
* removed redundant vitroAnnotations, now in VIVO-languages, ticket vivo-1821
* Removed key.png from the template and replaced it with css sprite and… (#184)
* Removed key.png from the template and replaced it with css sprite and descriptions in plain text.
* * adding height to background images, hopefully fixing issues
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1902
* [VIVO-1915] i18n - removing language select for label management for individuals (#190)
* removed the language select for managing multi language labels fpr individuals, ticket vivo-1915
* modified ManageLabelsForPersonGenerator so that you can only add an langauge label if it is not already set, ticket vivo-1915
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1915
* - added i18n() to hardcoded values
* added i18n support to person's domain in capability map, ticket 1867
* [VIVO-1946] - Update ResearcherID description in vivo.owl (#188)
* Update ResearcherID description in vivo.owl
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1946
* [VIVO-1936] i18n: updated the language comment in runtime.properties (#203)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
* [VIVO-1924] i18n: @en i18n properties are not loaded during first site startup. (#204)
* rearranged startup-listeners fixing bug with language files, ticket VIVO-1924
* Added a comment to prevent future bugs like this, ticket VIVO-1924
* fixed previous comment, ticket VIVO-1924
* Remove duplicate text from dropdown menus
* Minor checkstyle correction following: VIVO-1936 (#206)
Follow-on to: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* follow-up on vivo-1936 - restore default values in example-settings.xml (#210)
Co-authored-by: gneissone <mbgross@wustl.edu>
* [VIVO-1798] - Internationalize first and last name validation (#207)
* Internationalize first and last name validation
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1798
* adding collections process terms (#165)
* adding collections process terms
No JIRA :(
* Non-functional change to comment in example.applicationSetup.n3
Related to: https://jira.lyrasis.org/browse/VIVO-1741
* Update orcidConfirm.ftl (#199)
Fix i18n property used on ORCID confirmation step 2 button.
Related to https://jira.lyrasis.org/browse/VIVO-1945
* Fix external AGROVOC service URL
* URL fix for LCSH service
* Remove unnecessary pom.xml 'profile'
- Also, uncomment language overlays
- Noting that this is not actually necessary, as any 'war' Maven dependencies are automatically overlayed:
- https://maven.apache.org/plugins/maven-war-plugin/overlays.html
Co-authored-by: Andrew Woods <awoods@duraspace.org>
Co-authored-by: Nicolas D <46490666+nicalico@users.noreply.github.com>
Co-authored-by: UQAM-VIVO <heon.michel@uqam.ca>
Co-authored-by: matthiasluehr <60263380+matthiasluehr@users.noreply.github.com>
Co-authored-by: Michel Heon <heon@videotron.ca>
Co-authored-by: dofeldsc <dofeldsc@uos.de>
Co-authored-by: William Welling <wwelling@library.tamu.edu>
Co-authored-by: Brian Lowe <brianjlowe@gmail.com>
Co-authored-by: Matthias Lühr <luehr@hs-mittweida.de>
Co-authored-by: Ben <mbgross@wustl.edu>
Co-authored-by: Benjamin Kampe <benjamin@fehrmanns.net>
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
Co-authored-by: Gross, Benjamin <benjamin.gross@clarivate.com>
Co-authored-by: diatomsRcool <annethessen@gmail.com>
Co-authored-by: L.O <53535673+lb-ov@users.noreply.github.com>
2021-02-10 12:02:20 -05:00
|
|
|
<artifactId>vitro-languages-webapp-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-10-07 20:30:16 +01:00
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
Sprint i18n with main (#215)
* Layer uqam updates onto master (minus trailing whitespace)
* Update AddOrganizerRoleToPersonGenerator.java
Removed extraneous whitespace
* My whitespace (#153)
* Update AddPublicationToPersonGenerator.java
* Removed extraneous whitespace AND move RootUserPolicy.java from VIVO to Vitro
* Fixed whitespace in: AddAttendeeRoleToPersonGenerator.java
* Fixed indentations for AddOutreachProviderRoleToPersonGenerator.java
* Fixed indentations
* Removed extraneous whitespace (#158)
* Removed extraneous whitespace
* Fix bug introduced in cleaning up whitespace
* Tagging UQAM comments with the following tags
-Add-Feature
-Optimization
-Linguistic-Management
-Bug-Correction
* Update AddReviewerRoleToPersonGenerator.java
* Added an internationalization correction to be considered in the vivo-i18n-core that was forgotten when sprint-i18n was created.
* Fix typo in AddReviewerRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1774
* Fix typo in AddOutreachProviderRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1775
* Include language dependencies in build all of the time (#168)
Move "LocaleSelectionSetup" higher in the startup list so that the Vitro:RDFFilesLoader has the locale info available on its startup
Part of resolution to: https://jira.lyrasis.org/browse/VIVO-1836
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Made modifications to publicationToPersonUtils.js so that multilangua… (#170)
* Made modifications to publicationToPersonUtils.js so that multilanguage support will not break the javascript functionalty.
Co-authored-by: root <root@vivo-development.hs-mittweida.de>
Resolves: https://jira.lyrasis.org/browse/VIVO-1739
* Feature language en_CA (#169)
* Changing ontology extensions for n3 & assigning a base IRI to each
ontology
Co-authored-by: michelheonuqam <heon.michel@uqam.ca>
Co-authored-by: michelheon <heon@videotorn.ca>
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1862
* i18n: title tag and headings in capability map are in english in french version (#173)
* added multi-language support for ticket VIVO-1846
* fixed swapped properties, added Capability map title to i18n
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1847
* Added i18n support for Capability Map control buttons, JIRA ticket VIVO-1846
* removed redundat files which are now available via Vitro- and VIVO-languages
* added i18n support for the capability map, ticket vivo-1892
* Revert non-function RDF changes (#180)
Related to: https://jira.lyrasis.org/browse/VIVO-1905
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Ensure 'other' in Individual->Teaching->advisees->type is translated
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1881
* [VIVO-1842] i18n: Added function js_string at i18n variables to handle quotes properly (#181)
* added js_string at i18n strings to handle quotes properly, ticket vivo-1842
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1842
* replace static headings with i18n values (#183)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1844
* added empty check for getCountry, fixing bug with spanish label (es), ticket vivo-1900 (#182)
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1900
* Issue/vivo 1908 (#185)
* Provide fallback language in language-filtered webpage SPARQL query and use existing RDFService-based filtering for ConstantFieldOptions
Resolves: https://jira.lyrasis.org/browse/VIVO-1906
* Fix bug of missing toString() (#187)
Related to: https://jira.lyrasis.org/browse/VIVO-1906
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Remove files replicated in i18n (#186)
Related to: https://jira.lyrasis.org/browse/VIVO-1917
* removed redundant vitroAnnotations, now in VIVO-languages, ticket vivo-1821
* Removed key.png from the template and replaced it with css sprite and… (#184)
* Removed key.png from the template and replaced it with css sprite and descriptions in plain text.
* * adding height to background images, hopefully fixing issues
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1902
* [VIVO-1915] i18n - removing language select for label management for individuals (#190)
* removed the language select for managing multi language labels fpr individuals, ticket vivo-1915
* modified ManageLabelsForPersonGenerator so that you can only add an langauge label if it is not already set, ticket vivo-1915
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1915
* - added i18n() to hardcoded values
* added i18n support to person's domain in capability map, ticket 1867
* [VIVO-1946] - Update ResearcherID description in vivo.owl (#188)
* Update ResearcherID description in vivo.owl
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1946
* [VIVO-1936] i18n: updated the language comment in runtime.properties (#203)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
* [VIVO-1924] i18n: @en i18n properties are not loaded during first site startup. (#204)
* rearranged startup-listeners fixing bug with language files, ticket VIVO-1924
* Added a comment to prevent future bugs like this, ticket VIVO-1924
* fixed previous comment, ticket VIVO-1924
* Remove duplicate text from dropdown menus
* Minor checkstyle correction following: VIVO-1936 (#206)
Follow-on to: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* follow-up on vivo-1936 - restore default values in example-settings.xml (#210)
Co-authored-by: gneissone <mbgross@wustl.edu>
* [VIVO-1798] - Internationalize first and last name validation (#207)
* Internationalize first and last name validation
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1798
* adding collections process terms (#165)
* adding collections process terms
No JIRA :(
* Non-functional change to comment in example.applicationSetup.n3
Related to: https://jira.lyrasis.org/browse/VIVO-1741
* Update orcidConfirm.ftl (#199)
Fix i18n property used on ORCID confirmation step 2 button.
Related to https://jira.lyrasis.org/browse/VIVO-1945
* Fix external AGROVOC service URL
* URL fix for LCSH service
* Remove unnecessary pom.xml 'profile'
- Also, uncomment language overlays
- Noting that this is not actually necessary, as any 'war' Maven dependencies are automatically overlayed:
- https://maven.apache.org/plugins/maven-war-plugin/overlays.html
Co-authored-by: Andrew Woods <awoods@duraspace.org>
Co-authored-by: Nicolas D <46490666+nicalico@users.noreply.github.com>
Co-authored-by: UQAM-VIVO <heon.michel@uqam.ca>
Co-authored-by: matthiasluehr <60263380+matthiasluehr@users.noreply.github.com>
Co-authored-by: Michel Heon <heon@videotron.ca>
Co-authored-by: dofeldsc <dofeldsc@uos.de>
Co-authored-by: William Welling <wwelling@library.tamu.edu>
Co-authored-by: Brian Lowe <brianjlowe@gmail.com>
Co-authored-by: Matthias Lühr <luehr@hs-mittweida.de>
Co-authored-by: Ben <mbgross@wustl.edu>
Co-authored-by: Benjamin Kampe <benjamin@fehrmanns.net>
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
Co-authored-by: Gross, Benjamin <benjamin.gross@clarivate.com>
Co-authored-by: diatomsRcool <annethessen@gmail.com>
Co-authored-by: L.O <53535673+lb-ov@users.noreply.github.com>
2021-02-10 12:02:20 -05:00
|
|
|
<artifactId>vivo-languages-webapp-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-10-07 20:30:16 +01:00
|
|
|
<type>war</type>
|
Sprint i18n with main (#215)
* Layer uqam updates onto master (minus trailing whitespace)
* Update AddOrganizerRoleToPersonGenerator.java
Removed extraneous whitespace
* My whitespace (#153)
* Update AddPublicationToPersonGenerator.java
* Removed extraneous whitespace AND move RootUserPolicy.java from VIVO to Vitro
* Fixed whitespace in: AddAttendeeRoleToPersonGenerator.java
* Fixed indentations for AddOutreachProviderRoleToPersonGenerator.java
* Fixed indentations
* Removed extraneous whitespace (#158)
* Removed extraneous whitespace
* Fix bug introduced in cleaning up whitespace
* Tagging UQAM comments with the following tags
-Add-Feature
-Optimization
-Linguistic-Management
-Bug-Correction
* Update AddReviewerRoleToPersonGenerator.java
* Added an internationalization correction to be considered in the vivo-i18n-core that was forgotten when sprint-i18n was created.
* Fix typo in AddReviewerRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1774
* Fix typo in AddOutreachProviderRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1775
* Include language dependencies in build all of the time (#168)
Move "LocaleSelectionSetup" higher in the startup list so that the Vitro:RDFFilesLoader has the locale info available on its startup
Part of resolution to: https://jira.lyrasis.org/browse/VIVO-1836
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Made modifications to publicationToPersonUtils.js so that multilangua… (#170)
* Made modifications to publicationToPersonUtils.js so that multilanguage support will not break the javascript functionalty.
Co-authored-by: root <root@vivo-development.hs-mittweida.de>
Resolves: https://jira.lyrasis.org/browse/VIVO-1739
* Feature language en_CA (#169)
* Changing ontology extensions for n3 & assigning a base IRI to each
ontology
Co-authored-by: michelheonuqam <heon.michel@uqam.ca>
Co-authored-by: michelheon <heon@videotorn.ca>
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1862
* i18n: title tag and headings in capability map are in english in french version (#173)
* added multi-language support for ticket VIVO-1846
* fixed swapped properties, added Capability map title to i18n
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1847
* Added i18n support for Capability Map control buttons, JIRA ticket VIVO-1846
* removed redundat files which are now available via Vitro- and VIVO-languages
* added i18n support for the capability map, ticket vivo-1892
* Revert non-function RDF changes (#180)
Related to: https://jira.lyrasis.org/browse/VIVO-1905
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Ensure 'other' in Individual->Teaching->advisees->type is translated
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1881
* [VIVO-1842] i18n: Added function js_string at i18n variables to handle quotes properly (#181)
* added js_string at i18n strings to handle quotes properly, ticket vivo-1842
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1842
* replace static headings with i18n values (#183)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1844
* added empty check for getCountry, fixing bug with spanish label (es), ticket vivo-1900 (#182)
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1900
* Issue/vivo 1908 (#185)
* Provide fallback language in language-filtered webpage SPARQL query and use existing RDFService-based filtering for ConstantFieldOptions
Resolves: https://jira.lyrasis.org/browse/VIVO-1906
* Fix bug of missing toString() (#187)
Related to: https://jira.lyrasis.org/browse/VIVO-1906
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Remove files replicated in i18n (#186)
Related to: https://jira.lyrasis.org/browse/VIVO-1917
* removed redundant vitroAnnotations, now in VIVO-languages, ticket vivo-1821
* Removed key.png from the template and replaced it with css sprite and… (#184)
* Removed key.png from the template and replaced it with css sprite and descriptions in plain text.
* * adding height to background images, hopefully fixing issues
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1902
* [VIVO-1915] i18n - removing language select for label management for individuals (#190)
* removed the language select for managing multi language labels fpr individuals, ticket vivo-1915
* modified ManageLabelsForPersonGenerator so that you can only add an langauge label if it is not already set, ticket vivo-1915
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1915
* - added i18n() to hardcoded values
* added i18n support to person's domain in capability map, ticket 1867
* [VIVO-1946] - Update ResearcherID description in vivo.owl (#188)
* Update ResearcherID description in vivo.owl
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1946
* [VIVO-1936] i18n: updated the language comment in runtime.properties (#203)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
* [VIVO-1924] i18n: @en i18n properties are not loaded during first site startup. (#204)
* rearranged startup-listeners fixing bug with language files, ticket VIVO-1924
* Added a comment to prevent future bugs like this, ticket VIVO-1924
* fixed previous comment, ticket VIVO-1924
* Remove duplicate text from dropdown menus
* Minor checkstyle correction following: VIVO-1936 (#206)
Follow-on to: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* follow-up on vivo-1936 - restore default values in example-settings.xml (#210)
Co-authored-by: gneissone <mbgross@wustl.edu>
* [VIVO-1798] - Internationalize first and last name validation (#207)
* Internationalize first and last name validation
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1798
* adding collections process terms (#165)
* adding collections process terms
No JIRA :(
* Non-functional change to comment in example.applicationSetup.n3
Related to: https://jira.lyrasis.org/browse/VIVO-1741
* Update orcidConfirm.ftl (#199)
Fix i18n property used on ORCID confirmation step 2 button.
Related to https://jira.lyrasis.org/browse/VIVO-1945
* Fix external AGROVOC service URL
* URL fix for LCSH service
* Remove unnecessary pom.xml 'profile'
- Also, uncomment language overlays
- Noting that this is not actually necessary, as any 'war' Maven dependencies are automatically overlayed:
- https://maven.apache.org/plugins/maven-war-plugin/overlays.html
Co-authored-by: Andrew Woods <awoods@duraspace.org>
Co-authored-by: Nicolas D <46490666+nicalico@users.noreply.github.com>
Co-authored-by: UQAM-VIVO <heon.michel@uqam.ca>
Co-authored-by: matthiasluehr <60263380+matthiasluehr@users.noreply.github.com>
Co-authored-by: Michel Heon <heon@videotron.ca>
Co-authored-by: dofeldsc <dofeldsc@uos.de>
Co-authored-by: William Welling <wwelling@library.tamu.edu>
Co-authored-by: Brian Lowe <brianjlowe@gmail.com>
Co-authored-by: Matthias Lühr <luehr@hs-mittweida.de>
Co-authored-by: Ben <mbgross@wustl.edu>
Co-authored-by: Benjamin Kampe <benjamin@fehrmanns.net>
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
Co-authored-by: Gross, Benjamin <benjamin.gross@clarivate.com>
Co-authored-by: diatomsRcool <annethessen@gmail.com>
Co-authored-by: L.O <53535673+lb-ov@users.noreply.github.com>
2021-02-10 12:02:20 -05:00
|
|
|
</dependency>
|
2016-07-14 22:47:43 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|