Fiscality maschera funziona fino all apertura del xmlx
This commit is contained in:
173
Dockerfile
Executable file
173
Dockerfile
Executable file
@@ -0,0 +1,173 @@
|
||||
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm
|
||||
|
||||
USER root
|
||||
|
||||
# Create app dir and ensure X socket dir exists
|
||||
RUN mkdir -p /app /defaults \
|
||||
&& mkdir -p /tmp/.X11-unix \
|
||||
&& chown root:root /tmp/.X11-unix \
|
||||
&& chmod 1777 /tmp/.X11-unix
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||
firefox-esr gnumeric xdg-utils xdg-desktop-portal xdg-desktop-portal-gtk \
|
||||
python3-pyxdg ca-certificates \
|
||||
shared-mime-info desktop-file-utils \
|
||||
fonts-liberation fonts-dejavu-core \
|
||||
libgtk2.0-0 libx11-6 libxext6 libxrender1 libxtst6 libxi6 \
|
||||
libxrandr2 libxinerama1 libxcomposite1 libxss1 \
|
||||
libgdk-pixbuf2.0-0 libpango1.0-0 libatk1.0-0 \
|
||||
libcups2 libnss3 libwebkit2gtk-4.0-37 \
|
||||
inotify-tools gosu \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Copy Fiscality app into image and set owner to abc
|
||||
COPY --chown=abc:abc Fiscality /app/Fiscality
|
||||
RUN chmod -R a+rX /app/Fiscality \
|
||||
&& chmod a+x /app/Fiscality/Fiscality
|
||||
|
||||
# cont-init script to fix ownership at container start
|
||||
RUN mkdir -p /etc/cont-init.d && \
|
||||
cat > /etc/cont-init.d/99-fix-perms <<'EOF'
|
||||
#!/usr/bin/with-contenv bash
|
||||
set -e
|
||||
# Ensure abc owns application files (handles files created by root during build)
|
||||
chown -R abc:abc /app/Fiscality 2>/dev/null || true
|
||||
find /app/Fiscality -user root -exec chown abc:abc {} + 2>/dev/null || true
|
||||
chmod a+x /app/Fiscality/Fiscality 2>/dev/null || true
|
||||
chown -R abc:abc /config/FiscalityMio 2>/dev/null || true
|
||||
EOF
|
||||
RUN chmod +x /etc/cont-init.d/99-fix-perms
|
||||
|
||||
# Override xdg-open to use Firefox for PDFs
|
||||
RUN if [ -f /usr/bin/xdg-open ]; then mv /usr/bin/xdg-open /usr/bin/xdg-open.real; fi
|
||||
|
||||
RUN cat > /usr/bin/xdg-open <<'EOF'
|
||||
#!/bin/bash
|
||||
ARG="$1"
|
||||
if [ -z "$ARG" ]; then
|
||||
if [ -x /usr/bin/xdg-open.real ]; then
|
||||
exec /usr/bin/xdg-open.real "$@"
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
ARG="${ARG#file://}"
|
||||
|
||||
case "${ARG,,}" in
|
||||
*.pdf)
|
||||
# Open PDF with Firefox (disable sandbox for container)
|
||||
if command -v gosu >/dev/null 2>&1; then
|
||||
gosu abc env MOZ_DISABLE_CONTENT_SANDBOX=1 MOZ_DISABLE_GMP_SANDBOX=1 \
|
||||
DISPLAY="${DISPLAY:-:1}" \
|
||||
nohup firefox --no-remote --new-window "file://${ARG}" \
|
||||
>/dev/null 2>&1 &
|
||||
else
|
||||
su -s /bin/bash abc -c "env MOZ_DISABLE_CONTENT_SANDBOX=1 \
|
||||
MOZ_DISABLE_GMP_SANDBOX=1 DISPLAY='${DISPLAY:-:1}' \
|
||||
nohup firefox --no-remote --new-window 'file://${ARG}' \
|
||||
>/dev/null 2>&1 &" || true
|
||||
fi
|
||||
exit 0
|
||||
;;
|
||||
*.xlsx|*.xls|*.xlsm|*.ods)
|
||||
# Open spreadsheets with Gnumeric (lightweight reader)
|
||||
if command -v gosu >/dev/null 2>&1; then
|
||||
gosu abc env DISPLAY="${DISPLAY:-:1}" \
|
||||
nohup gnumeric "${ARG}" \
|
||||
>/dev/null 2>&1 &
|
||||
else
|
||||
su -s /bin/bash abc -c "env DISPLAY='${DISPLAY:-:1}' \
|
||||
nohup gnumeric '${ARG}' \
|
||||
>/dev/null 2>&1 &" || true
|
||||
fi
|
||||
exit 0
|
||||
;;
|
||||
*.xml|*.txt|*.wri)
|
||||
# Open text files with Firefox
|
||||
if command -v gosu >/dev/null 2>&1; then
|
||||
gosu abc env MOZ_DISABLE_CONTENT_SANDBOX=1 MOZ_DISABLE_GMP_SANDBOX=1 \
|
||||
DISPLAY="${DISPLAY:-:1}" \
|
||||
nohup firefox --no-remote --new-window "file://${ARG}" \
|
||||
>/dev/null 2>&1 &
|
||||
else
|
||||
su -s /bin/bash abc -c "env MOZ_DISABLE_CONTENT_SANDBOX=1 \
|
||||
MOZ_DISABLE_GMP_SANDBOX=1 DISPLAY='${DISPLAY:-:1}' \
|
||||
nohup firefox --no-remote --new-window 'file://${ARG}' \
|
||||
>/dev/null 2>&1 &" || true
|
||||
fi
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
if [ -x /usr/bin/xdg-open.real ]; then
|
||||
exec /usr/bin/xdg-open.real "$@"
|
||||
else
|
||||
if command -v gosu >/dev/null 2>&1; then
|
||||
gosu abc env MOZ_DISABLE_CONTENT_SANDBOX=1 DISPLAY="${DISPLAY:-:1}" \
|
||||
nohup firefox --no-remote "file://${ARG}" >/dev/null 2>&1 &
|
||||
else
|
||||
su -s /bin/bash abc -c "env MOZ_DISABLE_CONTENT_SANDBOX=1 DISPLAY='${DISPLAY:-:1}' \
|
||||
nohup firefox --no-remote 'file://${ARG}' >/dev/null 2>&1 &" || true
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
EOF
|
||||
|
||||
RUN chmod +x /usr/bin/xdg-open && chown root:root /usr/bin/xdg-open
|
||||
|
||||
# Default app mapping so PDFs use Firefox for abc user
|
||||
RUN mkdir -p /home/abc/.config && \
|
||||
echo -e "[Default Applications]\napplication/pdf=firefox-esr.desktop;" \
|
||||
> /home/abc/.config/mimeapps.list && \
|
||||
chown -R abc:abc /home/abc/.config
|
||||
|
||||
# Prepare Firefox profile directories for abc
|
||||
RUN mkdir -p /home/abc/.mozilla /home/abc/.cache /home/abc/.local/share && \
|
||||
chown -R abc:abc /home/abc
|
||||
|
||||
# Applications directory for desktop files
|
||||
RUN mkdir -p /usr/local/share/applications
|
||||
|
||||
# Firefox PDF handler .desktop file
|
||||
RUN cat > /usr/local/share/applications/firefox-pdf.desktop <<'EOF'
|
||||
[Desktop Entry]
|
||||
Name=Firefox (PDF)
|
||||
GenericName=Web Browser (PDF)
|
||||
Comment=View PDF files in Firefox
|
||||
Exec=firefox %u
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=firefox
|
||||
Categories=Network;WebBrowser;
|
||||
MimeType=application/pdf;application/x-pdf;application/vnd.adobe.pdf;
|
||||
NoDisplay=true
|
||||
EOF
|
||||
|
||||
RUN chmod 644 /usr/local/share/applications/firefox-pdf.desktop && \
|
||||
chown root:root /usr/local/share/applications/firefox-pdf.desktop && \
|
||||
update-desktop-database /usr/local/share/applications || true && \
|
||||
update-desktop-database /usr/share/applications || true && \
|
||||
update-mime-database /usr/share/mime || true
|
||||
|
||||
# Update per-user MIME default (in image build)
|
||||
RUN gosu abc xdg-mime default firefox-esr.desktop application/pdf || true
|
||||
RUN gosu abc xdg-mime default firefox-pdf.desktop application/pdf || true
|
||||
|
||||
# Copy both the PDF watcher script AND the autostart script
|
||||
COPY defaults/openpdf.sh /usr/local/bin/openpdf.sh
|
||||
RUN chmod +x /usr/local/bin/openpdf.sh && chown abc:abc /usr/local/bin/openpdf.sh
|
||||
|
||||
# Copy the autostart script to /defaults/ (LinuxServer base image uses this location)
|
||||
COPY defaults/autostart /defaults/autostart
|
||||
RUN chmod +x /defaults/autostart
|
||||
|
||||
# Set environment and entrypoint
|
||||
ENV GTK_USE_PORTAL=1
|
||||
ENV TITLE="Fiscality"
|
||||
EXPOSE 3000
|
||||
|
||||
USER root
|
||||
ENTRYPOINT ["/init"]
|
||||
BIN
Fiscality/Aggiornamenti.pdf
Normal file
BIN
Fiscality/Aggiornamenti.pdf
Normal file
Binary file not shown.
BIN
Fiscality/Fiscality
Normal file
BIN
Fiscality/Fiscality
Normal file
Binary file not shown.
21
Fiscality/Fiscality.ini
Normal file
21
Fiscality/Fiscality.ini
Normal file
@@ -0,0 +1,21 @@
|
||||
-startup
|
||||
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
|
||||
--launcher.library
|
||||
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807
|
||||
-clean
|
||||
-eclipse.keyring
|
||||
@user.home/Fiscality/workspace/security
|
||||
-vmargs
|
||||
-Xms256m
|
||||
-XX:MaxPermSize=256m
|
||||
-XX:+UseParNewGC
|
||||
-XX:+HeapDumpOnOutOfMemoryError
|
||||
-Xverify:none
|
||||
-Dosgi.console.enable.builtin=true
|
||||
-Duser.country=IT
|
||||
-Duser.language=it
|
||||
-Dfile.encoding=UTF-8
|
||||
-Dorg.eclipse.ecf.provider.filetransfer.httpclient.browse.connectTimeout=600000
|
||||
-Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.connectTimeout=600000
|
||||
-Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.readTimeout=600000
|
||||
-Xmx2048m
|
||||
20
Fiscality/about.html
Normal file
20
Fiscality/about.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>About</title>
|
||||
</head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
|
||||
<body lang="EN-US">
|
||||
<h2>About This Content</h2>
|
||||
|
||||
<p>February 22, 2006</p>
|
||||
<h3>License</h3>
|
||||
|
||||
<p>This directory contains third-party libraries that are required by the Eclipse launcher. Refer below for further information.</p>
|
||||
|
||||
<h4>Cairo for Linux</h4>
|
||||
|
||||
<p>Refer to the file <a href="about_files/about_cairo.html">about_cairo.html</a> for licensing details about "Cairo for Linux".</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
48
Fiscality/about_files/about_cairo.html
Normal file
48
Fiscality/about_files/about_cairo.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>About</title>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
|
||||
</head>
|
||||
<body lang="EN-US">
|
||||
<h2>About This Content</h2>
|
||||
|
||||
<p>March 27, 2006</p>
|
||||
<h3>License</h3>
|
||||
|
||||
<p>The Eclipse Foundation has included the following package for your convenience:</p>
|
||||
|
||||
<h4>Cairo 1.0.2 for Linux</h4>
|
||||
|
||||
<p>Cairo for Linux ("Cairo") is developed by The Cairo Project (<a href="http://www.cairographics.org" target="_blank">http://www.cairographics.org</a>):</p>
|
||||
|
||||
<p>Cairo is delivered in the following file ("Cairo Library"):</p>
|
||||
<ul>
|
||||
<li>libcairo-swt.so</li>
|
||||
</ul>
|
||||
|
||||
<p>which was compiled from Cairo source code available at <a href="http://www.cairographics.org/snapshots" target="_blank">http://www.cairographics.org/snapshots</a>.</p>
|
||||
|
||||
<p>Your use of the Cairo code in binary form is subject to
|
||||
the terms and conditions of Mozilla Public License Version 1.1 ("MPL"). A copy of the MPL is provided (<a href="mpl-v11.txt" target="blank">mpl-v11.txt</a>)
|
||||
and is also available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html" target="_blank">http://www.mozilla.org/MPL/MPL-1.1.html.</a>
|
||||
|
||||
<h4>pixman 0.1.6</h4>
|
||||
|
||||
<p>pixman ("pixman") is packaged within the Cairo Library and was compiled from source code available at
|
||||
<a href="http://www.cairographics.org/snapshots" target="_blank">http://www.cairographics.org/snapshots</a>.
|
||||
pixman includes the following packages:</p>
|
||||
|
||||
<ul>
|
||||
<li>libpixregion</li>
|
||||
<li>libic</li>
|
||||
<li>slim</li>
|
||||
</ul>
|
||||
|
||||
Your use of pixman is subject to the terms and conditions of the licenses in <a href="pixman-licenses.txt" target="blank">pixman-licenses.txt</a>.</p>
|
||||
|
||||
<p>If you did not receive the Cairo Library directly from the Eclipse Foundation, the package is being redistributed by another party ("Redistributor") and different terms and conditions may
|
||||
apply its use. Check the Redistributor's license that was provided with the content. If no such license exists, contact the Redistributor.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
470
Fiscality/about_files/mpl-v11.txt
Normal file
470
Fiscality/about_files/mpl-v11.txt
Normal file
@@ -0,0 +1,470 @@
|
||||
MOZILLA PUBLIC LICENSE
|
||||
Version 1.1
|
||||
|
||||
---------------
|
||||
|
||||
1. Definitions.
|
||||
|
||||
1.0.1. "Commercial Use" means distribution or otherwise making the
|
||||
Covered Code available to a third party.
|
||||
|
||||
1.1. "Contributor" means each entity that creates or contributes to
|
||||
the creation of Modifications.
|
||||
|
||||
1.2. "Contributor Version" means the combination of the Original
|
||||
Code, prior Modifications used by a Contributor, and the Modifications
|
||||
made by that particular Contributor.
|
||||
|
||||
1.3. "Covered Code" means the Original Code or Modifications or the
|
||||
combination of the Original Code and Modifications, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
||||
accepted in the software development community for the electronic
|
||||
transfer of data.
|
||||
|
||||
1.5. "Executable" means Covered Code in any form other than Source
|
||||
Code.
|
||||
|
||||
1.6. "Initial Developer" means the individual or entity identified
|
||||
as the Initial Developer in the Source Code notice required by Exhibit
|
||||
A.
|
||||
|
||||
1.7. "Larger Work" means a work which combines Covered Code or
|
||||
portions thereof with code not governed by the terms of this License.
|
||||
|
||||
1.8. "License" means this document.
|
||||
|
||||
1.8.1. "Licensable" means having the right to grant, to the maximum
|
||||
extent possible, whether at the time of the initial grant or
|
||||
subsequently acquired, any and all of the rights conveyed herein.
|
||||
|
||||
1.9. "Modifications" means any addition to or deletion from the
|
||||
substance or structure of either the Original Code or any previous
|
||||
Modifications. When Covered Code is released as a series of files, a
|
||||
Modification is:
|
||||
A. Any addition to or deletion from the contents of a file
|
||||
containing Original Code or previous Modifications.
|
||||
|
||||
B. Any new file that contains any part of the Original Code or
|
||||
previous Modifications.
|
||||
|
||||
1.10. "Original Code" means Source Code of computer software code
|
||||
which is described in the Source Code notice required by Exhibit A as
|
||||
Original Code, and which, at the time of its release under this
|
||||
License is not already Covered Code governed by this License.
|
||||
|
||||
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
||||
hereafter acquired, including without limitation, method, process,
|
||||
and apparatus claims, in any patent Licensable by grantor.
|
||||
|
||||
1.11. "Source Code" means the preferred form of the Covered Code for
|
||||
making modifications to it, including all modules it contains, plus
|
||||
any associated interface definition files, scripts used to control
|
||||
compilation and installation of an Executable, or source code
|
||||
differential comparisons against either the Original Code or another
|
||||
well known, available Covered Code of the Contributor's choice. The
|
||||
Source Code can be in a compressed or archival form, provided the
|
||||
appropriate decompression or de-archiving software is widely available
|
||||
for no charge.
|
||||
|
||||
1.12. "You" (or "Your") means an individual or a legal entity
|
||||
exercising rights under, and complying with all of the terms of, this
|
||||
License or a future version of this License issued under Section 6.1.
|
||||
For legal entities, "You" includes any entity which controls, is
|
||||
controlled by, or is under common control with You. For purposes of
|
||||
this definition, "control" means (a) the power, direct or indirect,
|
||||
to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (b) ownership of more than fifty percent
|
||||
(50%) of the outstanding shares or beneficial ownership of such
|
||||
entity.
|
||||
|
||||
2. Source Code License.
|
||||
|
||||
2.1. The Initial Developer Grant.
|
||||
The Initial Developer hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license, subject to third party intellectual property
|
||||
claims:
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Initial Developer to use, reproduce,
|
||||
modify, display, perform, sublicense and distribute the Original
|
||||
Code (or portions thereof) with or without Modifications, and/or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patents Claims infringed by the making, using or
|
||||
selling of Original Code, to make, have made, use, practice,
|
||||
sell, and offer for sale, and/or otherwise dispose of the
|
||||
Original Code (or portions thereof).
|
||||
|
||||
(c) the licenses granted in this Section 2.1(a) and (b) are
|
||||
effective on the date Initial Developer first distributes
|
||||
Original Code under the terms of this License.
|
||||
|
||||
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
||||
granted: 1) for code that You delete from the Original Code; 2)
|
||||
separate from the Original Code; or 3) for infringements caused
|
||||
by: i) the modification of the Original Code or ii) the
|
||||
combination of the Original Code with other software or devices.
|
||||
|
||||
2.2. Contributor Grant.
|
||||
Subject to third party intellectual property claims, each Contributor
|
||||
hereby grants You a world-wide, royalty-free, non-exclusive license
|
||||
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Contributor, to use, reproduce, modify,
|
||||
display, perform, sublicense and distribute the Modifications
|
||||
created by such Contributor (or portions thereof) either on an
|
||||
unmodified basis, with other Modifications, as Covered Code
|
||||
and/or as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims infringed by the making, using, or
|
||||
selling of Modifications made by that Contributor either alone
|
||||
and/or in combination with its Contributor Version (or portions
|
||||
of such combination), to make, use, sell, offer for sale, have
|
||||
made, and/or otherwise dispose of: 1) Modifications made by that
|
||||
Contributor (or portions thereof); and 2) the combination of
|
||||
Modifications made by that Contributor with its Contributor
|
||||
Version (or portions of such combination).
|
||||
|
||||
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
||||
effective on the date Contributor first makes Commercial Use of
|
||||
the Covered Code.
|
||||
|
||||
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
||||
granted: 1) for any code that Contributor has deleted from the
|
||||
Contributor Version; 2) separate from the Contributor Version;
|
||||
3) for infringements caused by: i) third party modifications of
|
||||
Contributor Version or ii) the combination of Modifications made
|
||||
by that Contributor with other software (except as part of the
|
||||
Contributor Version) or other devices; or 4) under Patent Claims
|
||||
infringed by Covered Code in the absence of Modifications made by
|
||||
that Contributor.
|
||||
|
||||
3. Distribution Obligations.
|
||||
|
||||
3.1. Application of License.
|
||||
The Modifications which You create or to which You contribute are
|
||||
governed by the terms of this License, including without limitation
|
||||
Section 2.2. The Source Code version of Covered Code may be
|
||||
distributed only under the terms of this License or a future version
|
||||
of this License released under Section 6.1, and You must include a
|
||||
copy of this License with every copy of the Source Code You
|
||||
distribute. You may not offer or impose any terms on any Source Code
|
||||
version that alters or restricts the applicable version of this
|
||||
License or the recipients' rights hereunder. However, You may include
|
||||
an additional document offering the additional rights described in
|
||||
Section 3.5.
|
||||
|
||||
3.2. Availability of Source Code.
|
||||
Any Modification which You create or to which You contribute must be
|
||||
made available in Source Code form under the terms of this License
|
||||
either on the same media as an Executable version or via an accepted
|
||||
Electronic Distribution Mechanism to anyone to whom you made an
|
||||
Executable version available; and if made available via Electronic
|
||||
Distribution Mechanism, must remain available for at least twelve (12)
|
||||
months after the date it initially became available, or at least six
|
||||
(6) months after a subsequent version of that particular Modification
|
||||
has been made available to such recipients. You are responsible for
|
||||
ensuring that the Source Code version remains available even if the
|
||||
Electronic Distribution Mechanism is maintained by a third party.
|
||||
|
||||
3.3. Description of Modifications.
|
||||
You must cause all Covered Code to which You contribute to contain a
|
||||
file documenting the changes You made to create that Covered Code and
|
||||
the date of any change. You must include a prominent statement that
|
||||
the Modification is derived, directly or indirectly, from Original
|
||||
Code provided by the Initial Developer and including the name of the
|
||||
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
||||
Executable version or related documentation in which You describe the
|
||||
origin or ownership of the Covered Code.
|
||||
|
||||
3.4. Intellectual Property Matters
|
||||
(a) Third Party Claims.
|
||||
If Contributor has knowledge that a license under a third party's
|
||||
intellectual property rights is required to exercise the rights
|
||||
granted by such Contributor under Sections 2.1 or 2.2,
|
||||
Contributor must include a text file with the Source Code
|
||||
distribution titled "LEGAL" which describes the claim and the
|
||||
party making the claim in sufficient detail that a recipient will
|
||||
know whom to contact. If Contributor obtains such knowledge after
|
||||
the Modification is made available as described in Section 3.2,
|
||||
Contributor shall promptly modify the LEGAL file in all copies
|
||||
Contributor makes available thereafter and shall take other steps
|
||||
(such as notifying appropriate mailing lists or newsgroups)
|
||||
reasonably calculated to inform those who received the Covered
|
||||
Code that new knowledge has been obtained.
|
||||
|
||||
(b) Contributor APIs.
|
||||
If Contributor's Modifications include an application programming
|
||||
interface and Contributor has knowledge of patent licenses which
|
||||
are reasonably necessary to implement that API, Contributor must
|
||||
also include this information in the LEGAL file.
|
||||
|
||||
(c) Representations.
|
||||
Contributor represents that, except as disclosed pursuant to
|
||||
Section 3.4(a) above, Contributor believes that Contributor's
|
||||
Modifications are Contributor's original creation(s) and/or
|
||||
Contributor has sufficient rights to grant the rights conveyed by
|
||||
this License.
|
||||
|
||||
3.5. Required Notices.
|
||||
You must duplicate the notice in Exhibit A in each file of the Source
|
||||
Code. If it is not possible to put such notice in a particular Source
|
||||
Code file due to its structure, then You must include such notice in a
|
||||
location (such as a relevant directory) where a user would be likely
|
||||
to look for such a notice. If You created one or more Modification(s)
|
||||
You may add your name as a Contributor to the notice described in
|
||||
Exhibit A. You must also duplicate this License in any documentation
|
||||
for the Source Code where You describe recipients' rights or ownership
|
||||
rights relating to Covered Code. You may choose to offer, and to
|
||||
charge a fee for, warranty, support, indemnity or liability
|
||||
obligations to one or more recipients of Covered Code. However, You
|
||||
may do so only on Your own behalf, and not on behalf of the Initial
|
||||
Developer or any Contributor. You must make it absolutely clear than
|
||||
any such warranty, support, indemnity or liability obligation is
|
||||
offered by You alone, and You hereby agree to indemnify the Initial
|
||||
Developer and every Contributor for any liability incurred by the
|
||||
Initial Developer or such Contributor as a result of warranty,
|
||||
support, indemnity or liability terms You offer.
|
||||
|
||||
3.6. Distribution of Executable Versions.
|
||||
You may distribute Covered Code in Executable form only if the
|
||||
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
||||
and if You include a notice stating that the Source Code version of
|
||||
the Covered Code is available under the terms of this License,
|
||||
including a description of how and where You have fulfilled the
|
||||
obligations of Section 3.2. The notice must be conspicuously included
|
||||
in any notice in an Executable version, related documentation or
|
||||
collateral in which You describe recipients' rights relating to the
|
||||
Covered Code. You may distribute the Executable version of Covered
|
||||
Code or ownership rights under a license of Your choice, which may
|
||||
contain terms different from this License, provided that You are in
|
||||
compliance with the terms of this License and that the license for the
|
||||
Executable version does not attempt to limit or alter the recipient's
|
||||
rights in the Source Code version from the rights set forth in this
|
||||
License. If You distribute the Executable version under a different
|
||||
license You must make it absolutely clear that any terms which differ
|
||||
from this License are offered by You alone, not by the Initial
|
||||
Developer or any Contributor. You hereby agree to indemnify the
|
||||
Initial Developer and every Contributor for any liability incurred by
|
||||
the Initial Developer or such Contributor as a result of any such
|
||||
terms You offer.
|
||||
|
||||
3.7. Larger Works.
|
||||
You may create a Larger Work by combining Covered Code with other code
|
||||
not governed by the terms of this License and distribute the Larger
|
||||
Work as a single product. In such a case, You must make sure the
|
||||
requirements of this License are fulfilled for the Covered Code.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation.
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Code due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description
|
||||
must be included in the LEGAL file described in Section 3.4 and must
|
||||
be included with all distributions of the Source Code. Except to the
|
||||
extent prohibited by statute or regulation, such description must be
|
||||
sufficiently detailed for a recipient of ordinary skill to be able to
|
||||
understand it.
|
||||
|
||||
5. Application of this License.
|
||||
|
||||
This License applies to code to which the Initial Developer has
|
||||
attached the notice in Exhibit A and to related Covered Code.
|
||||
|
||||
6. Versions of the License.
|
||||
|
||||
6.1. New Versions.
|
||||
Netscape Communications Corporation ("Netscape") may publish revised
|
||||
and/or new versions of the License from time to time. Each version
|
||||
will be given a distinguishing version number.
|
||||
|
||||
6.2. Effect of New Versions.
|
||||
Once Covered Code has been published under a particular version of the
|
||||
License, You may always continue to use it under the terms of that
|
||||
version. You may also choose to use such Covered Code under the terms
|
||||
of any subsequent version of the License published by Netscape. No one
|
||||
other than Netscape has the right to modify the terms applicable to
|
||||
Covered Code created under this License.
|
||||
|
||||
6.3. Derivative Works.
|
||||
If You create or use a modified version of this License (which you may
|
||||
only do in order to apply it to code which is not already Covered Code
|
||||
governed by this License), You must (a) rename Your license so that
|
||||
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
||||
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
||||
license (except to note that your license differs from this License)
|
||||
and (b) otherwise make it clear that Your version of the license
|
||||
contains terms which differ from the Mozilla Public License and
|
||||
Netscape Public License. (Filling in the name of the Initial
|
||||
Developer, Original Code or Contributor in the notice described in
|
||||
Exhibit A shall not of themselves be deemed to be modifications of
|
||||
this License.)
|
||||
|
||||
7. DISCLAIMER OF WARRANTY.
|
||||
|
||||
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||||
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
||||
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
||||
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
||||
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
||||
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
||||
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
||||
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
||||
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
||||
|
||||
8. TERMINATION.
|
||||
|
||||
8.1. This License and the rights granted hereunder will terminate
|
||||
automatically if You fail to comply with terms herein and fail to cure
|
||||
such breach within 30 days of becoming aware of the breach. All
|
||||
sublicenses to the Covered Code which are properly granted shall
|
||||
survive any termination of this License. Provisions which, by their
|
||||
nature, must remain in effect beyond the termination of this License
|
||||
shall survive.
|
||||
|
||||
8.2. If You initiate litigation by asserting a patent infringement
|
||||
claim (excluding declatory judgment actions) against Initial Developer
|
||||
or a Contributor (the Initial Developer or Contributor against whom
|
||||
You file such action is referred to as "Participant") alleging that:
|
||||
|
||||
(a) such Participant's Contributor Version directly or indirectly
|
||||
infringes any patent, then any and all rights granted by such
|
||||
Participant to You under Sections 2.1 and/or 2.2 of this License
|
||||
shall, upon 60 days notice from Participant terminate prospectively,
|
||||
unless if within 60 days after receipt of notice You either: (i)
|
||||
agree in writing to pay Participant a mutually agreeable reasonable
|
||||
royalty for Your past and future use of Modifications made by such
|
||||
Participant, or (ii) withdraw Your litigation claim with respect to
|
||||
the Contributor Version against such Participant. If within 60 days
|
||||
of notice, a reasonable royalty and payment arrangement are not
|
||||
mutually agreed upon in writing by the parties or the litigation claim
|
||||
is not withdrawn, the rights granted by Participant to You under
|
||||
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
||||
the 60 day notice period specified above.
|
||||
|
||||
(b) any software, hardware, or device, other than such Participant's
|
||||
Contributor Version, directly or indirectly infringes any patent, then
|
||||
any rights granted to You by such Participant under Sections 2.1(b)
|
||||
and 2.2(b) are revoked effective as of the date You first made, used,
|
||||
sold, distributed, or had made, Modifications made by that
|
||||
Participant.
|
||||
|
||||
8.3. If You assert a patent infringement claim against Participant
|
||||
alleging that such Participant's Contributor Version directly or
|
||||
indirectly infringes any patent where such claim is resolved (such as
|
||||
by license or settlement) prior to the initiation of patent
|
||||
infringement litigation, then the reasonable value of the licenses
|
||||
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
||||
into account in determining the amount or value of any payment or
|
||||
license.
|
||||
|
||||
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
||||
all end user license agreements (excluding distributors and resellers)
|
||||
which have been validly granted by You or any distributor hereunder
|
||||
prior to termination shall survive termination.
|
||||
|
||||
9. LIMITATION OF LIABILITY.
|
||||
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
||||
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
||||
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
||||
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
||||
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
||||
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
||||
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
||||
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
||||
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
||||
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
||||
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
||||
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
10. U.S. GOVERNMENT END USERS.
|
||||
|
||||
The Covered Code is a "commercial item," as that term is defined in
|
||||
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
||||
software" and "commercial computer software documentation," as such
|
||||
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
||||
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
||||
all U.S. Government End Users acquire Covered Code with only those
|
||||
rights set forth herein.
|
||||
|
||||
11. MISCELLANEOUS.
|
||||
|
||||
This License represents the complete agreement concerning subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. This License shall be governed by
|
||||
California law provisions (except to the extent applicable law, if
|
||||
any, provides otherwise), excluding its conflict-of-law provisions.
|
||||
With respect to disputes in which at least one party is a citizen of,
|
||||
or an entity chartered or registered to do business in the United
|
||||
States of America, any litigation relating to this License shall be
|
||||
subject to the jurisdiction of the Federal Courts of the Northern
|
||||
District of California, with venue lying in Santa Clara County,
|
||||
California, with the losing party responsible for costs, including
|
||||
without limitation, court costs and reasonable attorneys' fees and
|
||||
expenses. The application of the United Nations Convention on
|
||||
Contracts for the International Sale of Goods is expressly excluded.
|
||||
Any law or regulation which provides that the language of a contract
|
||||
shall be construed against the drafter shall not apply to this
|
||||
License.
|
||||
|
||||
12. RESPONSIBILITY FOR CLAIMS.
|
||||
|
||||
As between Initial Developer and the Contributors, each party is
|
||||
responsible for claims and damages arising, directly or indirectly,
|
||||
out of its utilization of rights under this License and You agree to
|
||||
work with Initial Developer and Contributors to distribute such
|
||||
responsibility on an equitable basis. Nothing herein is intended or
|
||||
shall be deemed to constitute any admission of liability.
|
||||
|
||||
13. MULTIPLE-LICENSED CODE.
|
||||
|
||||
Initial Developer may designate portions of the Covered Code as
|
||||
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
||||
Developer permits you to utilize portions of the Covered Code under
|
||||
Your choice of the NPL or the alternative licenses, if any, specified
|
||||
by the Initial Developer in the file described in Exhibit A.
|
||||
|
||||
EXHIBIT A -Mozilla Public License.
|
||||
|
||||
``The contents of this file are subject to the Mozilla Public License
|
||||
Version 1.1 (the "License"); you may not use this file except in
|
||||
compliance with the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS"
|
||||
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific language governing rights and limitations
|
||||
under the License.
|
||||
|
||||
The Original Code is ______________________________________.
|
||||
|
||||
The Initial Developer of the Original Code is ________________________.
|
||||
Portions created by ______________________ are Copyright (C) ______
|
||||
_______________________. All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms
|
||||
of the _____ license (the "[___] License"), in which case the
|
||||
provisions of [______] License are applicable instead of those
|
||||
above. If you wish to allow use of your version of this file only
|
||||
under the terms of the [____] License and not to allow others to use
|
||||
your version of this file under the MPL, indicate your decision by
|
||||
deleting the provisions above and replace them with the notice and
|
||||
other provisions required by the [___] License. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file
|
||||
under either the MPL or the [___] License."
|
||||
|
||||
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
||||
the notices in the Source Code files of the Original Code. You should
|
||||
use the text of this Exhibit A rather than the text found in the
|
||||
Original Code Source Code for Your Modifications.]
|
||||
|
||||
92
Fiscality/about_files/pixman-licenses.txt
Normal file
92
Fiscality/about_files/pixman-licenses.txt
Normal file
@@ -0,0 +1,92 @@
|
||||
libpixregion
|
||||
|
||||
Copyright 1987, 1998 The Open Group
|
||||
|
||||
Permission to use, copy, modify, distribute, and sell this software and its
|
||||
documentation for any purpose is hereby granted without fee, provided that
|
||||
the above copyright notice appear in all copies and that both that
|
||||
copyright notice and this permission notice appear in supporting
|
||||
documentation.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of The Open Group shall not be
|
||||
used in advertising or otherwise to promote the sale, use or other dealings
|
||||
in this Software without prior written authorization from The Open Group.
|
||||
|
||||
|
||||
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
|
||||
|
||||
All Rights Reserved
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and its
|
||||
documentation for any purpose and without fee is hereby granted,
|
||||
provided that the above copyright notice appear in all copies and that
|
||||
both that copyright notice and this permission notice appear in
|
||||
supporting documentation, and that the name of Digital not be
|
||||
used in advertising or publicity pertaining to distribution of the
|
||||
software without specific, written prior permission.
|
||||
|
||||
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
|
||||
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
|
||||
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
|
||||
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||
SOFTWARE.
|
||||
|
||||
----------------------------------------------------------------------
|
||||
libic
|
||||
|
||||
Copyright <20> 2001 Keith Packard
|
||||
|
||||
Permission to use, copy, modify, distribute, and sell this software and its
|
||||
documentation for any purpose is hereby granted without fee, provided that
|
||||
the above copyright notice appear in all copies and that both that
|
||||
copyright notice and this permission notice appear in supporting
|
||||
documentation, and that the name of Keith Packard not be used in
|
||||
advertising or publicity pertaining to distribution of the software without
|
||||
specific, written prior permission. Keith Packard makes no
|
||||
representations about the suitability of this software for any purpose. It
|
||||
is provided "as is" without express or implied warranty.
|
||||
|
||||
KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
||||
EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
----------------------------------------------------------------------
|
||||
slim
|
||||
|
||||
slim is Copyright <20> 2003 Richard Henderson
|
||||
|
||||
Permission to use, copy, modify, distribute, and sell this software
|
||||
and its documentation for any purpose is hereby granted without fee,
|
||||
provided that the above copyright notice appear in all copies and that
|
||||
both that copyright notice and this permission notice appear in
|
||||
supporting documentation, and that the name of Richard Henderson not be
|
||||
used in advertising or publicity pertaining to distribution of the
|
||||
software without specific, written prior permission. Richard Henderson
|
||||
makes no representations about the suitability of this software for
|
||||
any purpose. It is provided "as is" without express or implied
|
||||
warranty.
|
||||
|
||||
RICHARD HENDERSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
||||
EVENT SHALL RICHARD HENDERSON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
|
||||
USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
855
Fiscality/artifacts.xml
Normal file
855
Fiscality/artifacts.xml
Normal file
@@ -0,0 +1,855 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<?artifactRepository version='1.1.0'?>
|
||||
<repository name='Bundle pool' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'>
|
||||
<properties size='2'>
|
||||
<property name='p2.system' value='true'/>
|
||||
<property name='p2.timestamp' value='1738853084173'/>
|
||||
</properties>
|
||||
<mappings size='3'>
|
||||
<rule filter='(& (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
|
||||
<rule filter='(& (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
|
||||
<rule filter='(& (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
|
||||
</mappings>
|
||||
<artifacts size='159'>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.jface' version='3.8.0.v20120912-135020'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1090101'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.org.fasterxml.jackson' version='2.4.3'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='7518671'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.vatdeclarationgb.xml' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='9083'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.launcher.gtk.linux.x86_64' version='1.1.200.v20120913-144807'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='74425'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui' version='3.8.2.v20121018-234953'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='154488'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.common' version='3.6.100.v20120522-1841'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='106764'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.org.apache.commons.net' version='3.1.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='250059'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench' version='3.8.2.v20121128-133708'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='4177340'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.com.google.gson' version='2.8.1'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='601158'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.logging' version='15.7.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='534707'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2453'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.hamcrest.core' version='1.1.0.v20090501071000'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='27827'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.junit' version='4.8.2.v4_8_2_v20110321-1705'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='198651'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.com.ibm.jt400' version='7.9.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='16686232'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.property.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1358'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.simpleconfigurator.manipulator' version='2.0.0.v20110808-1657'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='24056'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.connection.http' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='7451'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.usage' version='16.5.1'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='11349'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.osgi' version='3.8.2.v20130124-134944'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1397588'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.osgi.services.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1348'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.apache.commons.io' version='2.4.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1073175'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.jarprocessor' version='1.0.200.v20110808-1657'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='69407'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.preferences' version='3.5.1.v20121031-182809'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='126756'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.filetransfer.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1370'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.widget' version='17.11.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='43778'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.ixuploader.v1_2' version='18.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='32592515'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.peppol' version='17.4.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='34952'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.apache.xerces' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1151274'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.osgi.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='8433'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.contenttype' version='3.4.200.v20120523-2004'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='93174'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.apache.commons.codec' version='1.3.0.v201101211617'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='55011'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.ds' version='1.4.1.v20120926-201320'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='194018'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='5371'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.contenttype.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2611'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.whereami' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='3097'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.com.itext' version='17.7.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1207758'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.communicationinvoicedata.xml' version='16.2.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='99781'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.resources' version='3.8.1.v20121114-124432'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='810224'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.garbagecollector' version='1.0.200.v20110808-1657'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='26238'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.registry' version='3.5.200.v20120522-1841'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='184235'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.expressions' version='3.4.400.v20120523-2004'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='88231'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.immediatesendingvatdata.xml' version='16.7.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1222879'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.apache.poi' version='3.9.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='8988131'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.sqlutility' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='14403'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.utils' version='15.12.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2950'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility.auth.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2670'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.repository' version='2.2.0.v20120524-1945'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='131861'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.javax.ws.rs' version='2.0.1'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1101753'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.identity' version='3.1.200.v20120610-1946'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='54408'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.json' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='40776'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.help.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1489'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.concurrent' version='1.0.300.v20120912-130548'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='21134'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.license' version='15.15.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='4372004'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.variables.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2508'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.artifact.repository' version='1.1.200.v20120430-1959'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='137109'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.core' version='2.2.0.v20120430-0525'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='72598'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.widgets.basic' version='15.6.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='245432'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility.auth' version='3.2.300.v20120523-2004'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='21532'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.utils' version='19.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2208678'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='org.eclipse.update.feature' id='AdexDatiFatture' version='18.1.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='725'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.enums' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='22515'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.launcher' version='1.3.0.v20120522-1813'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='49283'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.simpleconfigurator' version='1.0.301.v20120914-163612'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='40704'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.restutils' version='15.12.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='6110'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.transport.ecf' version='1.0.100.v20120913-155635'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='42019'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.jobs' version='3.5.200.v20120521-2346'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='92327'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.common.authentication.entity' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='32696'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.jface.databinding.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1381'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.nebula.cwt' version='0.9.0.201107141008'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='220534'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.publisher.eclipse' version='1.1.0.v20120913-155635'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='215195'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.metadata' version='2.1.0.v20120430-2001'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='340681'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.beans.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1355'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='org.eclipse.update.feature' id='AdexBase' version='17.10.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2860'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.connection.iseries.utils' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='3411'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.swt' version='3.8.1.v3836b'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='18539'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.org.apache.commons.httpclient' version='3.1.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='879307'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.touchpoint.eclipse' version='2.1.100.v20120428-0117'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='125384'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.jobs.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2396'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.filesystem' version='1.3.200.v20130115-145044'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='58000'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.connection.iseries' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='10094'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.metadata.repository' version='1.2.100.v20120524-1717'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='118134'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.util' version='1.0.400.v20120917-192807'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='78025'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='3739'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.property' version='1.4.100.v20120523-1956'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='169212'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.net' version='1.2.200.v20120914-093638'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='70474'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer' version='3.2.0.v20120610-1946'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='127603'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.commands.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1366'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.connection' version='15.15.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='21189'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.jooq' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='7298338'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex' version='19.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='34499213'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf' version='3.1.300.v20120610-1946'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='94181'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.help' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1406640'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.director' version='2.2.0.v20120524-0542'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='96469'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.runtime' version='3.8.0.v20120521-2346'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='75326'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.swt.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1369'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2575'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.common.entity' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='10152'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='javax.servlet' version='3.0.0.v201112011016'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='201594'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.apache.commons.logging' version='1.1.1.v201101211721'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='68107'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.swt.gtk.linux.x86_64.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2881'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='com.ibm.icu' version='4.4.2.v20110823'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='6701200'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.crypt' version='17.7.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='4815264'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.identity.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1367'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.net.sf.ehcache' version='2.6.9'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1205256'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.jface.databinding' version='1.6.0.v20120912-135020'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='278376'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.swt.gtk.linux.x86_64' version='3.8.1.v3836b'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2571156'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.event' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='20256'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.dom4j' version='1.6.1'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1560279'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.engine' version='2.2.0.v20130121-021919'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='197483'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.touchpoint.natives' version='1.1.0.v20130121-021919'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='52976'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.app' version='1.3.100.v20120522-1841'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='86390'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.osgi.services' version='3.3.100.v20120522-1822'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='83084'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.net' version='1.2.101.v20120914-093638'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='48973'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.event' version='1.2.200.v20120522-2049'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='33746'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.sat4j.core' version='2.3.0.v20110329'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='210700'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.observable' version='1.4.1.v20120521-2332'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='297396'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.installer' version='19.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='11834369'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.sat4j.pb' version='2.3.0.v20110329'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='140725'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility.registry' version='3.5.100.v20120521-2346'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='14137'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.apache.log4j' version='1.2.17'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2304405'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='org.eclipse.update.feature' id='AdexHelp' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='429'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='org.eclipse.update.feature' id='AdexSWT' version='16.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='616'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.splashscreen' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='80356'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.client.org.hibernate' version='4.0.1'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='10331423'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.pentaho.base' version='17.7.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='22790145'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.httpclient' version='4.0.200.v20120610-1946'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='74130'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.ixconfiguration' version='17.11.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='414748'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.apache.common.logging' version='1.1.3'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='280772'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.configuration' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='7387'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.observable.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='1359'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.variables' version='3.2.600.v20120521-2012'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='34351'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.jface.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='5881'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.net.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2759'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.publisher' version='1.2.0.v20121002-080415'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='105944'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ecf.filetransfer' version='5.0.0.v20120610-1946'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='51713'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.joda.time' version='1.6.2'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='3196937'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.commands' version='3.6.1.v20120912-135020'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='108729'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.frameworkadmin' version='2.0.100.v20120913-155515'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='36188'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.beans' version='1.2.200.v20120523-1956'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='76647'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.license.ui' version='15.15.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='35534'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.help' version='3.6.0.v20120912-134126'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='258851'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.org.eclipse.nebula.widgets.formattedtext' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='47276'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='org.eclipse.update.feature' id='Adex' version='19.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='954'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.palmax.client.jpa.service.connection' version='1.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='4084'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='org.eclipse.update.feature' id='AdexIX' version='18.0.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='635'/>
|
||||
</properties>
|
||||
<repositoryProperties size='1'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.apache.commons.httpclient' version='3.1.0.v201012070820'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='321633'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.operations' version='2.2.0.v20130119-010614'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='60068'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.forms' version='3.5.200.v20120521-2332'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='302116'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.expressions.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2973'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.frameworkadmin.equinox' version='1.0.400.v20120913-155709'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='62583'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.updatechecker' version='1.1.200.v20110808-1657'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='18004'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.equinox.security' version='1.1.100.v20120522-1841'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='107462'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.forms.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='2378'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.nebula.widgets.cdatetime' version='0.14.0.201107141008'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='168406'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.core.databinding' version='1.4.1.v20120912-135020'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='202248'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.org.glassfish.jersey' version='14.0.27'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='5602192'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.adex.itvatdeclaration.xml' version='18.1.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='65966'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench.nl_it' version='4.2.0.v20131123041006'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='27044'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact classifier='osgi.bundle' id='it.smi.installer.info' version='17.10.0'>
|
||||
<properties size='1'>
|
||||
<property name='download.size' value='8871842'/>
|
||||
</properties>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</repository>
|
||||
14
Fiscality/configuration/config.ini
Normal file
14
Fiscality/configuration/config.ini
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,154 @@
|
||||
#version=1
|
||||
com.ibm.icu,4.4.2.v20110823,plugins/com.ibm.icu_4.4.2.v20110823.jar,4,false
|
||||
it.smi.adex,19.0.0,plugins/it.smi.adex_19.0.0/,4,false
|
||||
it.smi.adex.communicationinvoicedata.xml,16.2.0,plugins/it.smi.adex.communicationinvoicedata.xml_16.2.0.jar,4,false
|
||||
it.smi.adex.help,16.0.0,plugins/it.smi.adex.help_16.0.0/,4,false
|
||||
it.smi.adex.immediatesendingvatdata.xml,16.7.0,plugins/it.smi.adex.immediatesendingvatdata.xml_16.7.0.jar,4,false
|
||||
it.smi.adex.installer,19.0.0,plugins/it.smi.adex.installer_19.0.0/,4,false
|
||||
it.smi.adex.itvatdeclaration.xml,18.1.0,plugins/it.smi.adex.itvatdeclaration.xml_18.1.0.jar,4,false
|
||||
it.smi.adex.ixconfiguration,17.11.0,plugins/it.smi.adex.ixconfiguration_17.11.0/,4,false
|
||||
it.smi.adex.ixuploader.v1_2,18.0.0,plugins/it.smi.adex.ixuploader.v1_2_18.0.0.jar,4,false
|
||||
it.smi.adex.peppol,17.4.0,plugins/it.smi.adex.peppol_17.4.0.jar,4,false
|
||||
it.smi.adex.splashscreen,1.0.0,plugins/it.smi.adex.splashscreen_1.0.0.jar,4,false
|
||||
it.smi.adex.utils,19.0.0,plugins/it.smi.adex.utils_19.0.0.jar,4,false
|
||||
it.smi.adex.vatdeclarationgb.xml,16.0.0,plugins/it.smi.adex.vatdeclarationgb.xml_16.0.0.jar,4,false
|
||||
it.smi.adex.whereami,16.0.0,plugins/it.smi.adex.whereami_16.0.0/,4,false
|
||||
it.smi.adex.widget,17.11.0,plugins/it.smi.adex.widget_17.11.0.jar,4,false
|
||||
it.smi.com.google.gson,2.8.1,plugins/it.smi.com.google.gson_2.8.1.jar,4,false
|
||||
it.smi.connection.http,16.0.0,plugins/it.smi.connection.http_16.0.0.jar,4,false
|
||||
it.smi.connection.iseries,16.0.0,plugins/it.smi.connection.iseries_16.0.0.jar,4,false
|
||||
it.smi.connection.iseries.utils,16.0.0,plugins/it.smi.connection.iseries.utils_16.0.0.jar,4,false
|
||||
it.smi.installer.info,17.10.0,plugins/it.smi.installer.info_17.10.0.jar,4,false
|
||||
it.smi.javax.ws.rs,2.0.1,plugins/it.smi.javax.ws.rs_2.0.1.jar,4,false
|
||||
it.smi.org.apache.commons.httpclient,3.1.0,plugins/it.smi.org.apache.commons.httpclient_3.1.0.jar,4,false
|
||||
it.smi.org.apache.commons.net,3.1.0,plugins/it.smi.org.apache.commons.net_3.1.0.jar,4,false
|
||||
it.smi.org.fasterxml.jackson,2.4.3,plugins/it.smi.org.fasterxml.jackson_2.4.3.jar,4,false
|
||||
it.smi.org.glassfish.jersey,14.0.27,plugins/it.smi.org.glassfish.jersey_14.0.27.jar,4,false
|
||||
it.smi.palmax.client.jpa.service.connection,1.0.0,plugins/it.smi.palmax.client.jpa.service.connection_1.0.0.jar,4,false
|
||||
it.smi.palmax.client.org.hibernate,4.0.1,plugins/it.smi.palmax.client.org.hibernate_4.0.1/,4,false
|
||||
it.smi.palmax.com.ibm.jt400,7.9.0,plugins/it.smi.palmax.com.ibm.jt400_7.9.0.jar,4,false
|
||||
it.smi.palmax.com.itext,17.7.0,plugins/it.smi.palmax.com.itext_17.7.0.jar,4,false
|
||||
it.smi.palmax.common.authentication.entity,1.0.0,plugins/it.smi.palmax.common.authentication.entity_1.0.0.jar,4,false
|
||||
it.smi.palmax.common.entity,1.0.0,plugins/it.smi.palmax.common.entity_1.0.0.jar,4,false
|
||||
it.smi.palmax.configuration,1.0.0,plugins/it.smi.palmax.configuration_1.0.0.jar,4,false
|
||||
it.smi.palmax.connection,15.15.0,plugins/it.smi.palmax.connection_15.15.0.jar,4,false
|
||||
it.smi.palmax.crypt,17.7.0,plugins/it.smi.palmax.crypt_17.7.0.jar,4,false
|
||||
it.smi.palmax.enums,1.0.0,plugins/it.smi.palmax.enums_1.0.0.jar,4,false
|
||||
it.smi.palmax.event,1.0.0,plugins/it.smi.palmax.event_1.0.0.jar,4,false
|
||||
it.smi.palmax.license,15.15.0,plugins/it.smi.palmax.license_15.15.0.jar,4,false
|
||||
it.smi.palmax.license.ui,15.15.0,plugins/it.smi.palmax.license.ui_15.15.0.jar,4,false
|
||||
it.smi.palmax.logging,15.7.0,plugins/it.smi.palmax.logging_15.7.0.jar,4,false
|
||||
it.smi.palmax.net.sf.ehcache,2.6.9,plugins/it.smi.palmax.net.sf.ehcache_2.6.9.jar,4,false
|
||||
it.smi.palmax.org.apache.common.logging,1.1.3,plugins/it.smi.palmax.org.apache.common.logging_1.1.3.jar,4,false
|
||||
it.smi.palmax.org.apache.commons.io,2.4.0,plugins/it.smi.palmax.org.apache.commons.io_2.4.0.jar,4,false
|
||||
it.smi.palmax.org.apache.log4j,1.2.17,plugins/it.smi.palmax.org.apache.log4j_1.2.17.jar,4,true
|
||||
it.smi.palmax.org.apache.poi,3.9.0,plugins/it.smi.palmax.org.apache.poi_3.9.0.jar,4,false
|
||||
it.smi.palmax.org.apache.xerces,1.0.0,plugins/it.smi.palmax.org.apache.xerces_1.0.0.jar,4,false
|
||||
it.smi.palmax.org.dom4j,1.6.1,plugins/it.smi.palmax.org.dom4j_1.6.1.jar,4,false
|
||||
it.smi.palmax.org.eclipse.nebula.widgets.formattedtext,1.0.0,plugins/it.smi.palmax.org.eclipse.nebula.widgets.formattedtext_1.0.0.jar,4,false
|
||||
it.smi.palmax.org.joda.time,1.6.2,plugins/it.smi.palmax.org.joda.time_1.6.2.jar,4,false
|
||||
it.smi.palmax.org.jooq,1.0.0,plugins/it.smi.palmax.org.jooq_1.0.0.jar,4,false
|
||||
it.smi.palmax.org.json,1.0.0,plugins/it.smi.palmax.org.json_1.0.0.jar,4,false
|
||||
it.smi.palmax.pentaho.base,17.7.0,plugins/it.smi.palmax.pentaho.base_17.7.0.jar,4,false
|
||||
it.smi.palmax.restutils,15.12.0,plugins/it.smi.palmax.restutils_15.12.0.jar,4,false
|
||||
it.smi.palmax.sqlutility,1.0.0,plugins/it.smi.palmax.sqlutility_1.0.0.jar,4,false
|
||||
it.smi.palmax.utils,15.12.0,plugins/it.smi.palmax.utils_15.12.0.jar,4,false
|
||||
it.smi.palmax.widgets.basic,15.6.0,plugins/it.smi.palmax.widgets.basic_15.6.0.jar,4,false
|
||||
it.smi.usage,16.5.1,plugins/it.smi.usage_16.5.1.jar,4,false
|
||||
javax.servlet,3.0.0.v201112011016,plugins/javax.servlet_3.0.0.v201112011016.jar,4,false
|
||||
org.apache.commons.codec,1.3.0.v201101211617,plugins/org.apache.commons.codec_1.3.0.v201101211617.jar,4,false
|
||||
org.apache.commons.httpclient,3.1.0.v201012070820,plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar,4,false
|
||||
org.apache.commons.logging,1.1.1.v201101211721,plugins/org.apache.commons.logging_1.1.1.v201101211721.jar,4,false
|
||||
org.eclipse.core.commands,3.6.1.v20120912-135020,plugins/org.eclipse.core.commands_3.6.1.v20120912-135020.jar,4,false
|
||||
org.eclipse.core.commands.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.commands.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.contenttype,3.4.200.v20120523-2004,plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar,4,false
|
||||
org.eclipse.core.contenttype.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.contenttype.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.databinding,1.4.1.v20120912-135020,plugins/org.eclipse.core.databinding_1.4.1.v20120912-135020.jar,4,false
|
||||
org.eclipse.core.databinding.beans,1.2.200.v20120523-1956,plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1956.jar,4,false
|
||||
org.eclipse.core.databinding.beans.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.databinding.beans.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.databinding.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.databinding.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.databinding.observable,1.4.1.v20120521-2332,plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2332.jar,4,false
|
||||
org.eclipse.core.databinding.observable.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.databinding.observable.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.databinding.property,1.4.100.v20120523-1956,plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1956.jar,4,false
|
||||
org.eclipse.core.databinding.property.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.databinding.property.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.expressions,3.4.400.v20120523-2004,plugins/org.eclipse.core.expressions_3.4.400.v20120523-2004.jar,4,false
|
||||
org.eclipse.core.expressions.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.expressions.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.filesystem,1.3.200.v20130115-145044,plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar,4,false
|
||||
org.eclipse.core.jobs,3.5.200.v20120521-2346,plugins/org.eclipse.core.jobs_3.5.200.v20120521-2346.jar,4,false
|
||||
org.eclipse.core.jobs.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.jobs.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.net,1.2.200.v20120914-093638,plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar,4,false
|
||||
org.eclipse.core.resources,3.8.1.v20121114-124432,plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar,4,false
|
||||
org.eclipse.core.runtime,3.8.0.v20120521-2346,plugins/org.eclipse.core.runtime_3.8.0.v20120521-2346.jar,4,true
|
||||
org.eclipse.core.runtime.compatibility.auth,3.2.300.v20120523-2004,plugins/org.eclipse.core.runtime.compatibility.auth_3.2.300.v20120523-2004.jar,4,false
|
||||
org.eclipse.core.runtime.compatibility.auth.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.runtime.compatibility.auth.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.runtime.compatibility.registry,3.5.100.v20120521-2346,plugins/org.eclipse.core.runtime.compatibility.registry_3.5.100.v20120521-2346/,4,false
|
||||
org.eclipse.core.runtime.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.runtime.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.core.variables,3.2.600.v20120521-2012,plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar,4,false
|
||||
org.eclipse.core.variables.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.core.variables.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ecf,3.1.300.v20120610-1946,plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar,4,false
|
||||
org.eclipse.ecf.filetransfer,5.0.0.v20120610-1946,plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar,4,false
|
||||
org.eclipse.ecf.filetransfer.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ecf.filetransfer.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ecf.identity,3.1.200.v20120610-1946,plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar,4,false
|
||||
org.eclipse.ecf.identity.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ecf.identity.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ecf.provider.filetransfer,3.2.0.v20120610-1946,plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar,4,false
|
||||
org.eclipse.ecf.provider.filetransfer.httpclient,4.0.200.v20120610-1946,plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar,4,false
|
||||
org.eclipse.ecf.provider.filetransfer.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ecf.provider.filetransfer.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.equinox.app,1.3.100.v20120522-1841,plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar,4,false
|
||||
org.eclipse.equinox.common,3.6.100.v20120522-1841,plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar,4,true
|
||||
org.eclipse.equinox.concurrent,1.0.300.v20120912-130548,plugins/org.eclipse.equinox.concurrent_1.0.300.v20120912-130548.jar,4,false
|
||||
org.eclipse.equinox.ds,1.4.1.v20120926-201320,plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar,4,true
|
||||
org.eclipse.equinox.event,1.2.200.v20120522-2049,plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar,4,true
|
||||
org.eclipse.equinox.frameworkadmin,2.0.100.v20120913-155515,plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar,4,false
|
||||
org.eclipse.equinox.frameworkadmin.equinox,1.0.400.v20120913-155709,plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar,4,false
|
||||
org.eclipse.equinox.launcher,1.3.0.v20120522-1813,plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar,4,false
|
||||
org.eclipse.equinox.launcher.gtk.linux.x86_64,1.1.200.v20120913-144807,plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/,4,false
|
||||
org.eclipse.equinox.p2.artifact.repository,1.1.200.v20120430-1959,plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar,4,false
|
||||
org.eclipse.equinox.p2.core,2.2.0.v20120430-0525,plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar,4,false
|
||||
org.eclipse.equinox.p2.director,2.2.0.v20120524-0542,plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar,4,false
|
||||
org.eclipse.equinox.p2.engine,2.2.0.v20130121-021919,plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar,4,false
|
||||
org.eclipse.equinox.p2.garbagecollector,1.0.200.v20110808-1657,plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar,4,false
|
||||
org.eclipse.equinox.p2.jarprocessor,1.0.200.v20110808-1657,plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar,4,false
|
||||
org.eclipse.equinox.p2.metadata,2.1.0.v20120430-2001,plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar,4,false
|
||||
org.eclipse.equinox.p2.metadata.repository,1.2.100.v20120524-1717,plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar,4,false
|
||||
org.eclipse.equinox.p2.operations,2.2.0.v20130119-010614,plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar,4,false
|
||||
org.eclipse.equinox.p2.publisher,1.2.0.v20121002-080415,plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar,4,false
|
||||
org.eclipse.equinox.p2.publisher.eclipse,1.1.0.v20120913-155635,plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar,4,false
|
||||
org.eclipse.equinox.p2.repository,2.2.0.v20120524-1945,plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar,4,false
|
||||
org.eclipse.equinox.p2.touchpoint.eclipse,2.1.100.v20120428-0117,plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar,4,false
|
||||
org.eclipse.equinox.p2.touchpoint.natives,1.1.0.v20130121-021919,plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar,4,false
|
||||
org.eclipse.equinox.p2.transport.ecf,1.0.100.v20120913-155635,plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar,4,false
|
||||
org.eclipse.equinox.p2.updatechecker,1.1.200.v20110808-1657,plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar,4,false
|
||||
org.eclipse.equinox.preferences,3.5.1.v20121031-182809,plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar,4,false
|
||||
org.eclipse.equinox.registry,3.5.200.v20120522-1841,plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar,4,false
|
||||
org.eclipse.equinox.security,1.1.100.v20120522-1841,plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar,4,false
|
||||
org.eclipse.equinox.simpleconfigurator,1.0.301.v20120914-163612,plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar,4,true
|
||||
org.eclipse.equinox.simpleconfigurator.manipulator,2.0.0.v20110808-1657,plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar,4,false
|
||||
org.eclipse.equinox.util,1.0.400.v20120917-192807,plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar,4,true
|
||||
org.eclipse.help,3.6.0.v20120912-134126,plugins/org.eclipse.help_3.6.0.v20120912-134126.jar,4,false
|
||||
org.eclipse.help.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.help.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.jface,3.8.0.v20120912-135020,plugins/org.eclipse.jface_3.8.0.v20120912-135020.jar,4,false
|
||||
org.eclipse.jface.databinding,1.6.0.v20120912-135020,plugins/org.eclipse.jface.databinding_1.6.0.v20120912-135020.jar,4,false
|
||||
org.eclipse.jface.databinding.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.jface.databinding.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.jface.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.jface.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.nebula.cwt,0.9.0.201107141008,plugins/org.eclipse.nebula.cwt_0.9.0.201107141008.jar,4,false
|
||||
org.eclipse.nebula.widgets.cdatetime,0.14.0.201107141008,plugins/org.eclipse.nebula.widgets.cdatetime_0.14.0.201107141008.jar,4,false
|
||||
org.eclipse.osgi,3.8.2.v20130124-134944,plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar,-1,true
|
||||
org.eclipse.osgi.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.osgi.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.osgi.services,3.3.100.v20120522-1822,plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar,4,true
|
||||
org.eclipse.osgi.services.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.osgi.services.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.swt,3.8.1.v3836b,plugins/org.eclipse.swt_3.8.1.v3836b.jar,4,false
|
||||
org.eclipse.swt.gtk.linux.x86_64,3.8.1.v3836b,plugins/org.eclipse.swt.gtk.linux.x86_64_3.8.1.v3836b.jar,4,false
|
||||
org.eclipse.swt.gtk.linux.x86_64.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.swt.gtk.linux.x86_64.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.swt.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.swt.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ui,3.8.2.v20121018-234953,plugins/org.eclipse.ui_3.8.2.v20121018-234953.jar,4,false
|
||||
org.eclipse.ui.forms,3.5.200.v20120521-2332,plugins/org.eclipse.ui.forms_3.5.200.v20120521-2332.jar,4,false
|
||||
org.eclipse.ui.forms.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ui.forms.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ui.net,1.2.101.v20120914-093638,plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar,4,false
|
||||
org.eclipse.ui.net.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ui.net.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ui.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ui.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.eclipse.ui.workbench,3.8.2.v20121128-133708,plugins/org.eclipse.ui.workbench_3.8.2.v20121128-133708.jar,4,false
|
||||
org.eclipse.ui.workbench.nl_it,4.2.0.v20131123041006,plugins/org.eclipse.ui.workbench.nl_it_4.2.0.v20131123041006.jar,4,false
|
||||
org.hamcrest.core,1.1.0.v20090501071000,plugins/org.hamcrest.core_1.1.0.v20090501071000.jar,4,false
|
||||
org.junit,4.8.2.v4_8_2_v20110321-1705,plugins/org.junit_4.8.2.v4_8_2_v20110321-1705/,4,false
|
||||
org.sat4j.core,2.3.0.v20110329,plugins/org.sat4j.core_2.3.0.v20110329.jar,4,false
|
||||
org.sat4j.pb,2.3.0.v20110329,plugins/org.sat4j.pb_2.3.0.v20110329.jar,4,false
|
||||
17
Fiscality/configuration/org.eclipse.update/platform.xml
Normal file
17
Fiscality/configuration/org.eclipse.update/platform.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<config date="1738853085679" transient="false">
|
||||
<site updateable="true" url="platform:/base/" enabled="true" policy="USER-EXCLUDE">
|
||||
<feature id="AdexIX" version="18.0.0" url="features/AdexIX_18.0.0/">
|
||||
</feature>
|
||||
<feature id="Adex" version="19.0.0" url="features/Adex_19.0.0/">
|
||||
</feature>
|
||||
<feature id="AdexBase" version="17.10.0" url="features/AdexBase_17.10.0/">
|
||||
</feature>
|
||||
<feature id="AdexDatiFatture" version="18.1.0" url="features/AdexDatiFatture_18.1.0/">
|
||||
</feature>
|
||||
<feature id="AdexHelp" version="16.0.0" url="features/AdexHelp_16.0.0/">
|
||||
</feature>
|
||||
<feature id="AdexSWT" version="16.0.0" url="features/AdexSWT_16.0.0/">
|
||||
</feature>
|
||||
</site>
|
||||
</config>
|
||||
1075
Fiscality/features/AdexBase_17.10.0/feature.xml
Normal file
1075
Fiscality/features/AdexBase_17.10.0/feature.xml
Normal file
File diff suppressed because it is too large
Load Diff
81
Fiscality/features/AdexDatiFatture_18.1.0/feature.xml
Normal file
81
Fiscality/features/AdexDatiFatture_18.1.0/feature.xml
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="AdexDatiFatture"
|
||||
label="AdexDatiFatture"
|
||||
version="18.1.0">
|
||||
|
||||
<description url="http://www.example.com/description">
|
||||
[Enter Feature Description here.]
|
||||
</description>
|
||||
|
||||
<copyright url="http://www.example.com/copyright">
|
||||
[Enter Copyright Description here.]
|
||||
</copyright>
|
||||
|
||||
<license url="http://www.example.com/license">
|
||||
[Enter License Description here.]
|
||||
</license>
|
||||
|
||||
<requires>
|
||||
<import plugin="it.smi.palmax.sqlutility"/>
|
||||
<import plugin="it.smi.palmax.org.apache.commons.io"/>
|
||||
<import plugin="it.smi.palmax.org.apache.log4j"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="it.smi.adex.utils" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.sqlutility" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.logging" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.crypt" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.connection" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.event" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.jface.databinding" version="1.6.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding" version="1.4.1" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding.beans" version="1.2.200" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding.observable" version="1.4.1" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding.property" version="1.4.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui.forms" version="3.5.200" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.widgets.basic" version="1.0.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.communicationinvoicedata.xml"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="16.2.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.ixconfiguration"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="17.11.0"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.utils"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="19.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.immediatesendingvatdata.xml"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="16.7.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.vatdeclarationgb.xml"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="16.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.itvatdeclaration.xml"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="18.1.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
||||
30
Fiscality/features/AdexHelp_16.0.0/feature.xml
Normal file
30
Fiscality/features/AdexHelp_16.0.0/feature.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="AdexHelp"
|
||||
label="AdexHelp"
|
||||
version="16.0.0">
|
||||
|
||||
<description url="http://www.example.com/description">
|
||||
[Enter Feature Description here.]
|
||||
</description>
|
||||
|
||||
<copyright url="http://www.example.com/copyright">
|
||||
[Enter Copyright Description here.]
|
||||
</copyright>
|
||||
|
||||
<license url="http://www.example.com/license">
|
||||
[Enter License Description here.]
|
||||
</license>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.help"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="16.0.0"/>
|
||||
|
||||
</feature>
|
||||
61
Fiscality/features/AdexIX_18.0.0/feature.xml
Normal file
61
Fiscality/features/AdexIX_18.0.0/feature.xml
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="AdexIX"
|
||||
label="AdexIX"
|
||||
version="18.0.0">
|
||||
|
||||
<description url="http://www.example.com/description">
|
||||
[Enter Feature Description here.]
|
||||
</description>
|
||||
|
||||
<copyright url="http://www.example.com/copyright">
|
||||
[Enter Copyright Description here.]
|
||||
</copyright>
|
||||
|
||||
<license url="http://www.example.com/license">
|
||||
[Enter License Description here.]
|
||||
</license>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="it.smi.adex.utils" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.com.ibm.jt400" version="7.9.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.org.apache.log4j" version="1.2.17" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui" version="3.8.2" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.org.joda.time" version="1.6.2" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.connection.iseries" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.sqlutility" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.crypt" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.adex.ixconfiguration" version="1.0.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.ixconfiguration"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="17.11.0"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.utils"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="19.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.ixuploader.v1_2"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="18.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.peppol"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="17.4.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
||||
118
Fiscality/features/AdexSWT_16.0.0/feature.xml
Normal file
118
Fiscality/features/AdexSWT_16.0.0/feature.xml
Normal file
@@ -0,0 +1,118 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="AdexSWT"
|
||||
label="AdexSWT"
|
||||
version="16.0.0">
|
||||
|
||||
<description url="http://www.example.com/description">
|
||||
[Enter Feature Description here.]
|
||||
</description>
|
||||
|
||||
<copyright url="http://www.example.com/copyright">
|
||||
[Enter Copyright Description here.]
|
||||
</copyright>
|
||||
|
||||
<license url="http://www.example.com/license">
|
||||
[Enter License Description here.]
|
||||
</license>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.swt" version="3.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="3.8.1.v3836b"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.cocoa.macosx.x86_64"
|
||||
os="macosx"
|
||||
ws="cocoa"
|
||||
arch="x86_64"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="3.8.1.v3836b"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.cocoa.macosx.x86_64.nl_it"
|
||||
os="macosx"
|
||||
ws="cocoa"
|
||||
arch="x86_64"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="4.2.0.v20131123041006"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.gtk.linux.x86_64"
|
||||
os="linux"
|
||||
ws="gtk"
|
||||
arch="x86_64"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="3.8.1.v3836b"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.gtk.linux.x86_64.nl_it"
|
||||
os="linux"
|
||||
ws="gtk"
|
||||
arch="x86_64"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="4.2.0.v20131123041006"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.win32.win32.x86"
|
||||
os="win32"
|
||||
ws="win32"
|
||||
arch="x86"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="3.8.1.v3836b"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.win32.win32.x86.nl_it"
|
||||
os="win32"
|
||||
ws="win32"
|
||||
arch="x86"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="4.2.0.v20131123041006"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.win32.win32.x86_64"
|
||||
os="win32"
|
||||
ws="win32"
|
||||
arch="x86_64"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="3.8.1.v3836b"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.swt.win32.win32.x86_64.nl_it"
|
||||
os="win32"
|
||||
ws="win32"
|
||||
arch="x86_64"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="4.2.0.v20131123041006"
|
||||
fragment="true"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
||||
109
Fiscality/features/Adex_19.0.0/feature.xml
Normal file
109
Fiscality/features/Adex_19.0.0/feature.xml
Normal file
@@ -0,0 +1,109 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="Adex"
|
||||
label="Adex"
|
||||
version="19.0.0">
|
||||
|
||||
<description url="http://www.example.com/description">
|
||||
[Enter Feature Description here.]
|
||||
</description>
|
||||
|
||||
<copyright url="http://www.example.com/copyright">
|
||||
[Enter Copyright Description here.]
|
||||
</copyright>
|
||||
|
||||
<license url="http://www.example.com/license">
|
||||
[Enter License Description here.]
|
||||
</license>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="it.smi.palmax.connection" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.connection.iseries" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.sqlutility" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui.forms" version="3.5.200" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding"/>
|
||||
<import plugin="org.eclipse.core.databinding.observable"/>
|
||||
<import plugin="org.eclipse.jface.databinding"/>
|
||||
<import plugin="it.smi.palmax.org.jooq" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.widgets.basic" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.enums" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.crypt" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.logging" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.event" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.org.apache.commons.net" version="3.1.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.adex.utils" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.adex.splashscreen" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.installer.info" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.connection.http" version="1.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.org.apache.commons.io" version="2.4.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.adex.installer" version="1.0.1" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.core"/>
|
||||
<import plugin="org.eclipse.equinox.p2.operations"/>
|
||||
<import plugin="org.eclipse.equinox.p2.engine" version="2.2.0" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.org.apache.commons.httpclient" version="3.1.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.net" version="1.2.200" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.security"/>
|
||||
<import plugin="org.eclipse.equinox.ds" version="1.4.1" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.artifact.repository" version="1.1.200" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.director" version="2.2.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.metadata" version="2.1.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.metadata.repository" version="1.2.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.repository" version="2.2.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.transport.ecf" version="1.0.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.p2.updatechecker" version="1.1.200" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.osgi.services" version="3.3.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui.net" version="1.2.101" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui" version="3.4.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.runtime" version="3.6.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.jface.databinding" version="1.6.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding" version="1.4.1" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding.beans" version="1.2.200" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding.observable" version="1.4.1" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.databinding.property" version="1.4.100" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.palmax.org.apache.common.logging" version="1.1.3" match="greaterOrEqual"/>
|
||||
<import plugin="it.smi.adex.ixuploader.v1_2" version="1.0.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="19.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.splashscreen"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="1.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.utils"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="19.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.installer"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="19.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.whereami"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="16.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="it.smi.adex.widget"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="17.11.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
||||
69
Fiscality/jre/COPYRIGHT
Executable file
69
Fiscality/jre/COPYRIGHT
Executable file
@@ -0,0 +1,69 @@
|
||||
Copyright <20> 1993, 2018, Oracle and/or its affiliates.
|
||||
All rights reserved.
|
||||
|
||||
This software and related documentation are provided under a
|
||||
license agreement containing restrictions on use and
|
||||
disclosure and are protected by intellectual property laws.
|
||||
Except as expressly permitted in your license agreement or
|
||||
allowed by law, you may not use, copy, reproduce, translate,
|
||||
broadcast, modify, license, transmit, distribute, exhibit,
|
||||
perform, publish, or display any part, in any form, or by
|
||||
any means. Reverse engineering, disassembly, or
|
||||
decompilation of this software, unless required by law for
|
||||
interoperability, is prohibited.
|
||||
|
||||
The information contained herein is subject to change
|
||||
without notice and is not warranted to be error-free. If you
|
||||
find any errors, please report them to us in writing.
|
||||
|
||||
If this is software or related documentation that is
|
||||
delivered to the U.S. Government or anyone licensing it on
|
||||
behalf of the U.S. Government, the following notice is
|
||||
applicable:
|
||||
|
||||
U.S. GOVERNMENT END USERS: Oracle programs, including any
|
||||
operating system, integrated software, any programs
|
||||
installed on the hardware, and/or documentation, delivered
|
||||
to U.S. Government end users are "commercial computer
|
||||
software" pursuant to the applicable Federal Acquisition
|
||||
Regulation and agency-specific supplemental regulations. As
|
||||
such, use, duplication, disclosure, modification, and
|
||||
adaptation of the programs, including any operating system,
|
||||
integrated software, any programs installed on the hardware,
|
||||
and/or documentation, shall be subject to license terms and
|
||||
license restrictions applicable to the programs. No other
|
||||
rights are granted to the U.S. Government.
|
||||
|
||||
This software or hardware is developed for general use in a
|
||||
variety of information management applications. It is not
|
||||
developed or intended for use in any inherently dangerous
|
||||
applications, including applications that may create a risk
|
||||
of personal injury. If you use this software or hardware in
|
||||
dangerous applications, then you shall be responsible to
|
||||
take all appropriate fail-safe, backup, redundancy, and
|
||||
other measures to ensure its safe use. Oracle Corporation
|
||||
and its affiliates disclaim any liability for any damages
|
||||
caused by use of this software or hardware in dangerous
|
||||
applications.
|
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or
|
||||
its affiliates. Other names may be trademarks of their
|
||||
respective owners.
|
||||
|
||||
Intel and Intel Xeon are trademarks or registered trademarks
|
||||
of Intel Corporation. All SPARC trademarks are used under
|
||||
license and are trademarks or registered trademarks of SPARC
|
||||
International, Inc. AMD, Opteron, the AMD logo, and the AMD
|
||||
Opteron logo are trademarks or registered trademarks of
|
||||
Advanced Micro Devices. UNIX is a registered trademark of
|
||||
The Open Group.
|
||||
|
||||
This software or hardware and documentation may provide
|
||||
access to or information on content, products, and services
|
||||
from third parties. Oracle Corporation and its affiliates
|
||||
are not responsible for and expressly disclaim all
|
||||
warranties of any kind with respect to third-party content,
|
||||
products, and services. Oracle Corporation and its
|
||||
affiliates will not be responsible for any loss, costs, or
|
||||
damages incurred due to your access to or use of third-party
|
||||
content, products, or services.
|
||||
1
Fiscality/jre/LICENSE
Executable file
1
Fiscality/jre/LICENSE
Executable file
@@ -0,0 +1 @@
|
||||
Please refer to http://java.com/license
|
||||
1
Fiscality/jre/README
Executable file
1
Fiscality/jre/README
Executable file
@@ -0,0 +1 @@
|
||||
Please refer to http://java.com/licensereadme
|
||||
2186
Fiscality/jre/THIRDPARTYLICENSEREADME-JAVAFX.txt
Executable file
2186
Fiscality/jre/THIRDPARTYLICENSEREADME-JAVAFX.txt
Executable file
File diff suppressed because it is too large
Load Diff
3242
Fiscality/jre/THIRDPARTYLICENSEREADME.txt
Executable file
3242
Fiscality/jre/THIRDPARTYLICENSEREADME.txt
Executable file
File diff suppressed because it is too large
Load Diff
28
Fiscality/jre/Welcome.html
Executable file
28
Fiscality/jre/Welcome.html
Executable file
@@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>
|
||||
Welcome to the Java(TM) Platform
|
||||
</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2>Welcome to the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Platform</h2>
|
||||
<p> Welcome to the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Standard Edition Runtime
|
||||
Environment. This provides complete runtime support for Java applications.
|
||||
<p> The runtime environment includes the Java<SUP><FONT SIZE=-2>TM</FONT></SUP>
|
||||
Plug-in product which supports the Java environment inside web browsers.
|
||||
<h3>References</h3>
|
||||
<p>
|
||||
See the <a href="http://download.oracle.com/javase/7/docs/technotes/guides/plugin/">Java Plug-in</a> product
|
||||
documentation for more information on using the Java Plug-in product.
|
||||
<p> See the <a href=
|
||||
"http://www.oracle.com/technetwork/java/javase/overview/"
|
||||
>Java Platform</a> web site for
|
||||
more information on the Java Platform.
|
||||
<hr>
|
||||
<font size="-2">
|
||||
Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
</font>
|
||||
<p>
|
||||
</body>
|
||||
</html>
|
||||
BIN
Fiscality/jre/lib/amd64/jli/libjli.so
Executable file
BIN
Fiscality/jre/lib/amd64/jli/libjli.so
Executable file
Binary file not shown.
35
Fiscality/jre/lib/amd64/jvm.cfg
Executable file
35
Fiscality/jre/lib/amd64/jvm.cfg
Executable file
@@ -0,0 +1,35 @@
|
||||
# Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
|
||||
# and may not be available in a future release.
|
||||
#
|
||||
-server KNOWN
|
||||
-client IGNORE
|
||||
BIN
Fiscality/jre/lib/amd64/libattach.so
Executable file
BIN
Fiscality/jre/lib/amd64/libattach.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-53.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-53.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-54.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-54.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-55.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-55.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-56.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-56.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-57.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-57.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-ffmpeg-56.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-ffmpeg-56.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libavplugin-ffmpeg-57.so
Executable file
BIN
Fiscality/jre/lib/amd64/libavplugin-ffmpeg-57.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libawt.so
Executable file
BIN
Fiscality/jre/lib/amd64/libawt.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libawt_headless.so
Executable file
BIN
Fiscality/jre/lib/amd64/libawt_headless.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libawt_xawt.so
Executable file
BIN
Fiscality/jre/lib/amd64/libawt_xawt.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libbci.so
Executable file
BIN
Fiscality/jre/lib/amd64/libbci.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libdcpr.so
Executable file
BIN
Fiscality/jre/lib/amd64/libdcpr.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libdecora_sse.so
Executable file
BIN
Fiscality/jre/lib/amd64/libdecora_sse.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libdeploy.so
Executable file
BIN
Fiscality/jre/lib/amd64/libdeploy.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libdt_socket.so
Executable file
BIN
Fiscality/jre/lib/amd64/libdt_socket.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libfontmanager.so
Executable file
BIN
Fiscality/jre/lib/amd64/libfontmanager.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libfxplugins.so
Executable file
BIN
Fiscality/jre/lib/amd64/libfxplugins.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libglass.so
Executable file
BIN
Fiscality/jre/lib/amd64/libglass.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libglassgtk2.so
Executable file
BIN
Fiscality/jre/lib/amd64/libglassgtk2.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libglassgtk3.so
Executable file
BIN
Fiscality/jre/lib/amd64/libglassgtk3.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libglib-lite.so
Executable file
BIN
Fiscality/jre/lib/amd64/libglib-lite.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libgstreamer-lite.so
Executable file
BIN
Fiscality/jre/lib/amd64/libgstreamer-lite.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libhprof.so
Executable file
BIN
Fiscality/jre/lib/amd64/libhprof.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libinstrument.so
Executable file
BIN
Fiscality/jre/lib/amd64/libinstrument.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libj2gss.so
Executable file
BIN
Fiscality/jre/lib/amd64/libj2gss.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libj2pcsc.so
Executable file
BIN
Fiscality/jre/lib/amd64/libj2pcsc.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libj2pkcs11.so
Executable file
BIN
Fiscality/jre/lib/amd64/libj2pkcs11.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjaas_unix.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjaas_unix.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjava.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjava.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjava_crw_demo.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjava_crw_demo.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjavafx_font.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjavafx_font.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjavafx_font_freetype.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjavafx_font_freetype.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjavafx_font_pango.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjavafx_font_pango.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjavafx_font_t2k.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjavafx_font_t2k.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjavafx_iio.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjavafx_iio.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjawt.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjawt.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjdwp.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjdwp.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjfr.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjfr.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjfxmedia.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjfxmedia.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjfxwebkit.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjfxwebkit.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjpeg.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjpeg.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjsdt.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjsdt.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjsig.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjsig.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjsound.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjsound.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libjsoundalsa.so
Executable file
BIN
Fiscality/jre/lib/amd64/libjsoundalsa.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/liblcms.so
Executable file
BIN
Fiscality/jre/lib/amd64/liblcms.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libmanagement.so
Executable file
BIN
Fiscality/jre/lib/amd64/libmanagement.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libmlib_image.so
Executable file
BIN
Fiscality/jre/lib/amd64/libmlib_image.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libnet.so
Executable file
BIN
Fiscality/jre/lib/amd64/libnet.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libnio.so
Executable file
BIN
Fiscality/jre/lib/amd64/libnio.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libnpjp2.so
Executable file
BIN
Fiscality/jre/lib/amd64/libnpjp2.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libnpt.so
Executable file
BIN
Fiscality/jre/lib/amd64/libnpt.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libprism_common.so
Executable file
BIN
Fiscality/jre/lib/amd64/libprism_common.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libprism_es2.so
Executable file
BIN
Fiscality/jre/lib/amd64/libprism_es2.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libprism_sw.so
Executable file
BIN
Fiscality/jre/lib/amd64/libprism_sw.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libresource.so
Executable file
BIN
Fiscality/jre/lib/amd64/libresource.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libsaproc.so
Executable file
BIN
Fiscality/jre/lib/amd64/libsaproc.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libsctp.so
Executable file
BIN
Fiscality/jre/lib/amd64/libsctp.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libsplashscreen.so
Executable file
BIN
Fiscality/jre/lib/amd64/libsplashscreen.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libsunec.so
Executable file
BIN
Fiscality/jre/lib/amd64/libsunec.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libt2k.so
Executable file
BIN
Fiscality/jre/lib/amd64/libt2k.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libunpack.so
Executable file
BIN
Fiscality/jre/lib/amd64/libunpack.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libverify.so
Executable file
BIN
Fiscality/jre/lib/amd64/libverify.so
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/amd64/libzip.so
Executable file
BIN
Fiscality/jre/lib/amd64/libzip.so
Executable file
Binary file not shown.
24
Fiscality/jre/lib/amd64/server/Xusage.txt
Executable file
24
Fiscality/jre/lib/amd64/server/Xusage.txt
Executable file
@@ -0,0 +1,24 @@
|
||||
-Xmixed mixed mode execution (default)
|
||||
-Xint interpreted mode execution only
|
||||
-Xbootclasspath:<directories and zip/jar files separated by :>
|
||||
set search path for bootstrap classes and resources
|
||||
-Xbootclasspath/a:<directories and zip/jar files separated by :>
|
||||
append to end of bootstrap class path
|
||||
-Xbootclasspath/p:<directories and zip/jar files separated by :>
|
||||
prepend in front of bootstrap class path
|
||||
-Xnoclassgc disable class garbage collection
|
||||
-Xincgc enable incremental garbage collection
|
||||
-Xloggc:<file> log GC status to a file with time stamps
|
||||
-Xbatch disable background compilation
|
||||
-Xms<size> set initial Java heap size
|
||||
-Xmx<size> set maximum Java heap size
|
||||
-Xss<size> set java thread stack size
|
||||
-Xprof output cpu profiling data
|
||||
-Xfuture enable strictest checks, anticipating future default
|
||||
-Xrs reduce use of OS signals by Java/VM (see documentation)
|
||||
-Xcheck:jni perform additional checks for JNI functions
|
||||
-Xshare:off do not attempt to use shared class data
|
||||
-Xshare:auto use shared class data if possible (default)
|
||||
-Xshare:on require using shared class data, otherwise fail.
|
||||
|
||||
The -X options are non-standard and subject to change without notice.
|
||||
1
Fiscality/jre/lib/amd64/server/libjsig.so
Symbolic link
1
Fiscality/jre/lib/amd64/server/libjsig.so
Symbolic link
@@ -0,0 +1 @@
|
||||
../libjsig.so
|
||||
BIN
Fiscality/jre/lib/amd64/server/libjvm.so
Executable file
BIN
Fiscality/jre/lib/amd64/server/libjvm.so
Executable file
Binary file not shown.
60
Fiscality/jre/lib/calendars.properties
Executable file
60
Fiscality/jre/lib/calendars.properties
Executable file
@@ -0,0 +1,60 @@
|
||||
# Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
#
|
||||
# Japanese imperial calendar
|
||||
#
|
||||
# Meiji since 1868-01-01 00:00:00 local time (Gregorian)
|
||||
# Taisho since 1912-07-30 00:00:00 local time (Gregorian)
|
||||
# Showa since 1926-12-25 00:00:00 local time (Gregorian)
|
||||
# Heisei since 1989-01-08 00:00:00 local time (Gregorian)
|
||||
calendar.japanese.type: LocalGregorianCalendar
|
||||
calendar.japanese.eras: \
|
||||
name=Meiji,abbr=M,since=-3218832000000; \
|
||||
name=Taisho,abbr=T,since=-1812153600000; \
|
||||
name=Showa,abbr=S,since=-1357603200000; \
|
||||
name=Heisei,abbr=H,since=600220800000
|
||||
|
||||
#
|
||||
# Taiwanese calendar
|
||||
# Minguo since 1911-01-01 00:00:00 local time (Gregorian)
|
||||
calendar.taiwanese.type: LocalGregorianCalendar
|
||||
calendar.taiwanese.eras: \
|
||||
name=MinGuo,since=-1830384000000
|
||||
|
||||
#
|
||||
# Thai Buddhist calendar
|
||||
# Buddhist Era since -542-01-01 00:00:00 local time (Gregorian)
|
||||
calendar.thai-buddhist.type: LocalGregorianCalendar
|
||||
calendar.thai-buddhist.eras: \
|
||||
name=BuddhistEra,abbr=B.E.,since=-79302585600000
|
||||
calendar.thai-buddhist.year-boundary: \
|
||||
day1=4-1,since=-79302585600000; \
|
||||
day1=1-1,since=-915148800000
|
||||
|
||||
#
|
||||
# Hijrah calendars
|
||||
#
|
||||
calendar.hijrah.Hijrah-umalqura: hijrah-config-umalqura.properties
|
||||
calendar.hijrah.Hijrah-umalqura.type: islamic-umalqura
|
||||
2559
Fiscality/jre/lib/classlist
Executable file
2559
Fiscality/jre/lib/classlist
Executable file
File diff suppressed because it is too large
Load Diff
BIN
Fiscality/jre/lib/cmm/CIEXYZ.pf
Executable file
BIN
Fiscality/jre/lib/cmm/CIEXYZ.pf
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/cmm/GRAY.pf
Executable file
BIN
Fiscality/jre/lib/cmm/GRAY.pf
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/cmm/LINEAR_RGB.pf
Executable file
BIN
Fiscality/jre/lib/cmm/LINEAR_RGB.pf
Executable file
Binary file not shown.
BIN
Fiscality/jre/lib/cmm/PYCC.pf
Executable file
BIN
Fiscality/jre/lib/cmm/PYCC.pf
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user