86aa1cef69
vilya's wire-value classes streamed reflectively, which breaks on Android/ART (nondeterministic Class.getDeclaredFields order): a Stat read on-device pulled a Place object into Stat._type and desynced the game-object subscription. Generated explicit declaration-ordered read/writeObject for stats/data (Stat subclasses + StatModifier pass-through substitution), parlor/data (Table & co.) and parlor/game/data via bang's genStreamableLibs task — byte-identical on HotSpot, deterministic on ART. narya 1.17 -> 1.22 (generated code references com.threerings.io.GenStreamUtil) + explicit jsr250 provided dep (@Generated no longer supplied transitively). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HhfHCXYp2ctWi76Z91y9Ut
98 lines
2.9 KiB
XML
98 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>vilya-parent</artifactId>
|
|
<version>1.7.1</version>
|
|
</parent>
|
|
|
|
<artifactId>vilya</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Vilya Core</name>
|
|
|
|
<dependencies>
|
|
<!-- exported dependencies -->
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>ooo-util</artifactId>
|
|
<version>1.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>narya</artifactId>
|
|
<!-- 1.22: the Epic A1 Phase 5 generated streamers reference
|
|
com.threerings.io.GenStreamUtil (added in narya 1.21) -->
|
|
<version>1.22</version>
|
|
</dependency>
|
|
<dependency>
|
|
<!-- javax.annotation.Generated on the genservice-generated sources (SOURCE retention, so
|
|
compile-only); narya 1.17 supplied it transitively, 1.22 no longer does -->
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>jsr250-api</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>nenya</artifactId>
|
|
<version>1.7</version>
|
|
</dependency>
|
|
|
|
<!-- optional dependencies -->
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>nenya-tools</artifactId>
|
|
<version>1.7</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-digester</groupId>
|
|
<artifactId>commons-digester</artifactId>
|
|
<version>2.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.samskivert</groupId>
|
|
<artifactId>depot</artifactId>
|
|
<version>1.8</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>3.18.2-GA</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.megginson.sax</groupId>
|
|
<artifactId>xml-writer</artifactId>
|
|
<version>0.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- test dependencies -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>com/threerings/**/*Test.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|