Skip to content

Commit

Permalink
UP-3881: Maven goal (data-import) on project Announcements fails for …
Browse files Browse the repository at this point in the history
…Windows; bumping Announcements to 2.0.0
  • Loading branch information
drewwills committed Nov 13, 2013
1 parent 220255e commit 1d60d52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<filters.file>filters/${env}.properties</filters.file>

<!-- WAR Dependency Version Properties -->
<AnnouncementsPortlet.version>2.0.0-M3</AnnouncementsPortlet.version>
<AnnouncementsPortlet.version>2.0.0</AnnouncementsPortlet.version>
<BookmarksPortlet.version>1.0.11</BookmarksPortlet.version>
<CalendarPortlet.version>2.1.3-M1</CalendarPortlet.version>
<cas-server.version>3.5.1</cas-server.version>
Expand Down
10 changes: 5 additions & 5 deletions uportal-portlets-overlay/AnnouncementsPortlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,15 @@
<java failonerror="true" classname="org.jasig.portlet.announcements.Importer">
<sysproperty key="log4j.configuration" value="command-line.log4j.properties" />
<classpath>
<pathelement path="${project.build.directory}/${project.artifactId}/WEB-INF/classes" />
<pathelement location="${project.build.directory}/${project.artifactId}/WEB-INF/context" />
<pathelement path="${runtime_classpath}" />
<pathelement path="${plugin_classpath}" />
<pathelement location="${servlet.jar}" />
<pathelement location="${portlet.jar}" />
<pathelement path="${project.build.directory}/${project.artifactId}/classes" /> <!-- Should be in runtime classpath -->
</classpath>

<arg value="${dir}" />
<arg value="${project.build.directory}/${project.artifactId}/WEB-INF/context/importExportContext.xml" />
<arg value="importExportContext.xml" />
</java>
</tasks>
</configuration>
Expand Down Expand Up @@ -179,14 +178,15 @@
<java failonerror="true" fork="true" classname="org.jasig.portlet.announcements.Exporter">
<sysproperty key="log4j.configuration" value="command-line.log4j.properties" />
<classpath>
<pathelement location="${project.build.directory}/${project.artifactId}/WEB-INF/context" />
<pathelement path="${runtime_classpath}" />
<pathelement path="${plugin_classpath}" />
<pathelement location="${servlet.jar}" />
<pathelement location="${portlet.jar}" />
<pathelement path="${project.build.directory}/${project.artifactId}/WEB-INF/classes" />
</classpath>

<arg value="${dir}" />
<arg value="${project.build.directory}/${project.artifactId}/WEB-INF/context/importExportContext.xml" />
<arg value="importExportContext.xml" />
</java>
</tasks>
</configuration>
Expand Down

0 comments on commit 1d60d52

Please sign in to comment.